﻿.container {
    max-width:100% !important;
}

.ill-section {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 24px;
    background-color: #fafafa;
}

.ill-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.ill-helper-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.ill-feedback {
    border: 1px solid #cfe2ff;
    background-color: #f4f8ff;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}
.lookup-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lookup-input {
    flex: 1 1 auto;
    min-width: 0;
}

.loading-spinner {
    display: inline-block !important;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    box-sizing: border-box;
    border: 3px solid #d0d0d0;
    border-top-color: #333333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.hidden {
    display: none !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.lookup-error {
    color: #b00020;
}

.lookup-ok {
    color: #2a7a2a;
}

.truncate {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}