.page-header #report-search {
    width: 100%; /* Full width of the page-header */
    padding: 12px 16px; /* Comfortable padding */
    border: 1px solid var(--border-color, #d1d5db); /* Softer gray border */
    border-radius: 10px; /* Smooth, modern rounded corners */
    font-size: 15px; /* Readable font size */
    font-weight: 400; /* Lighter weight for elegance */
    color: #111827; /* Dark text for contrast */
    background: #f8fafc; /* Subtle off-white background */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03); /* Very subtle shadow */
    transition: all 0.3s ease; /* Smooth transitions for border, shadow, and transform */
}

/* Стили только для геодезии */
.geodesy-metrics {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.geodesy-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}

.geodesy-meta-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.geodesy-metric-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.geodesy-metric-label {
    font-weight: 500;
    color: #333;
    flex-shrink: 0;
    min-width: 120px;
}

.geodesy-metric-value {
    color: #666;
    text-align: right;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.geodesy-edit-notice {
    color: #28a745;
    font-size: 12px;
    margin-top: 5px;
}

.project-title {
    font-size: 18px; /* Увеличить размер шрифта */
    font-weight: 600; /* Сделать шрифт более жирным */
}

.page-header #report-search:focus {
    outline: none;
    border-color: #3b82f6; /* Bright blue focus border */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); /* Subtle focus ring */
    transform: translateY(-1px); /* Slight lift on focus */
}

.page-header #report-search::placeholder {
    color: #9ca3af; /* Softer placeholder color */
    font-weight: 400;
}

.geodesy-list .no-results {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid var(--border-color, #e2e8f0);
    animation: popIn 0.4s ease-out;
}

.geodesy-list .no-results-text {
    font-size: 18px;
    font-weight: 500;
    color: #4b5563;
    text-align: center;
    padding: 16px;
}

.project-card {
    background: var(--avn-bg, #ffffff);
    border-radius: 8px;
    padding: 6px;
    margin-bottom: 8px;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideIn 0.3s ease-out;
}

.project-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.project-card.collapsed .project-reports-list {
    display: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
}

.report-card {
    margin-bottom: 12px; /* Добавлено расстояние между отчетами */
}

.project-reports-list {
    display: block;
    transition: all 0.3s ease;
    padding-top: 8px; /* Add top padding to create space between checklist header and first audit card */
}

.checklist-card.collapsed .project-reports-list {
    display: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
}

.project-reports-list {
    display: block;
    transition: all 0.3s ease;
}

.project-reports-list.collapsed {
    display: none;
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--card-bg, #eff6ff);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    gap: 8px;
}

.report-header .audit-date {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
}

.report-header .btn.small {
    padding: 6px;
    font-size: 0; /* Hide text */
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.report-header .btn.small.red-btn {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.report-header .btn.small:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.report-header .btn.small.red-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.report-header .btn.small i {
    font-size: 12px;
    color: #ffffff;
}

.floors-section {
    margin-bottom: 20px;
}

.floors-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 200px; /* Ограниченная высота */
    overflow-y: auto; /* Скроллбар при необходимости */
    padding: 10px;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 6px;
    background: #f9fafb;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: #3b82f6; /* Синий цвет для чекбоксов */
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:disabled {
    accent-color: #9ca3af; /* Серый для отключенных */
}

.searchable-select {
    position: relative;
}

.searchable-select-input {
    width: 100%;
    padding: 8px 24px 8px 12px;
    border: 1px solid var(--border-color, #d1d5db);
    border-radius: 6px;
    font-size: 14px;
    color: #111827;
    background: #ffffff url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%234b5563"%3E%3Cpath fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" /%3E%3C/svg%3E') no-repeat right 10px center;
    background-size: 16px;
    transition: all 0.3s ease;
}

.searchable-select-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.searchable-select-input:disabled {
    background: #e5e7eb url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%239ca3af"%3E%3Cpath fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" /%3E%3C/svg%3E') no-repeat right 10px center;
    background-size: 16px;
    cursor: not-allowed;
}

.searchable-select-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.select-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 4px;
    list-style: none;
    padding: 0;
}

.select-list .select-option {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #4b5563;
    transition: background 0.2s ease;
}

.select-list .select-option:hover,
.select-list .select-option.selected {
    background: #f1f5f9;
}