/* ========================================
   ADMIN STYLES - RESPONSIVE DESIGN
   ======================================== */

/* Container principal */
.admin-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ========================================
   PAGE DE CONNEXION
   ======================================== */

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* ========================================
   DASHBOARD ADMIN
   ======================================== */

.admin-dashboard {
    width: 100%;
    max-width: 1400px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

.admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

/* ========================================
   SYSTÈME D'ONGLETS
   ======================================== */

.admin-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-button {
    flex: 1;
    min-width: 120px;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.tab-button.active {
    color: #667eea;
    background: white;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #667eea;
}

.tab-content {
    padding: 32px;
}

.placeholder-tab {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.placeholder-tab h2 {
    margin-bottom: 16px;
    color: #333;
}

/* ========================================
   ONGLET SERVICES
   ======================================== */

.services-tab {
    width: 100%;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.tab-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.search-container {
    margin-bottom: 24px;
}

.search-mode-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.mode-btn {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.mode-btn:hover {
    border-color: #667eea;
    background: #f8f9fa;
}

.mode-btn.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #667eea;
}

.search-info {
    margin-top: 8px;
    padding: 8px 12px;
    background: #e7f3ff;
    border-left: 3px solid #667eea;
    border-radius: 4px;
    font-size: 13px;
    color: #004085;
}

/* Grid de services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.service-card.semantic-result {
    border-left-width: 4px;
    border-left-color: #667eea;
    background: linear-gradient(to right, rgba(102, 126, 234, 0.03), white);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.service-category {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.semantic-score {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-icon {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: #f8f9fa;
    transform: scale(1.1);
}

.btn-edit:hover {
    background: #e7f3ff;
}

.btn-delete:hover {
    background: #ffe7e7;
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.service-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.badge-price {
    background: #d4edda;
    color: #155724;
}

.badge-rate {
    background: #cce5ff;
    color: #004085;
}

.badge-onsite {
    background: #fff3cd;
    color: #856404;
}

.badge-remote {
    background: #d1ecf1;
    color: #0c5460;
}

/* ========================================
   MODALS
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-confirm {
    max-width: 500px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 2px solid #e9ecef;
}

.modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-close:hover {
    background: #f8f9fa;
    color: #333;
}

.modal-body {
    padding: 32px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

/* ========================================
   FORMULAIRES
   ======================================== */

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
}

textarea.form-control {
    resize: vertical;
}

.form-group-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* ========================================
   BOUTONS
   ======================================== */

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background: #5a6268;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(40, 167, 69, 0.3);
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #c82333;
}

.btn-block {
    width: 100%;
}

/* ========================================
   LOADING & EMPTY STATES
   ======================================== */

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #6c757d;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.text-warning {
    color: #856404;
    font-size: 14px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablettes */
@media (max-width: 768px) {
    .admin-container {
        padding: 12px;
    }

    .login-card {
        padding: 30px 24px;
    }

    .admin-header {
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .admin-header h1 {
        font-size: 24px;
    }

    .tab-content {
        padding: 24px 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .tab-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .tab-header h2 {
        text-align: center;
    }

    .search-mode-toggle {
        flex-direction: column;
    }

    .mode-btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .modal-actions {
        flex-direction: column-reverse;
    }

    .modal-actions .btn {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .login-title {
        font-size: 24px;
    }

    .admin-header h1 {
        font-size: 20px;
    }

    .tab-button {
        min-width: 100px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .tab-header h2 {
        font-size: 20px;
    }

    .service-card {
        padding: 16px;
    }

    .modal-content {
        border-radius: 12px;
    }
}

/* ========================================
   DARK MODE STYLES
   ======================================== */

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-darkmode {
    font-size: 20px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-darkmode:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Dark Mode - Container & Login */
.dark .admin-container {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
}

.dark .login-card {
    background: #1f2937;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.dark .login-title {
    color: #f9fafb;
}

.dark .alert-danger {
    background-color: #7f1d1d;
    color: #fca5a5;
    border-color: #991b1b;
}

.dark .alert-warning {
    background-color: #78350f;
    color: #fcd34d;
    border-color: #92400e;
}

/* Dark Mode - Dashboard */
.dark .admin-dashboard {
    background: #111827;
}

.dark .admin-header {
    background: linear-gradient(135deg, #4c1d95 0%, #581c87 100%);
}

/* Dark Mode - Tabs */
.dark .admin-tabs {
    background: #1f2937;
    border-bottom-color: #374151;
}

.dark .tab-button {
    color: #9ca3af;
}

.dark .tab-button:hover {
    background: rgba(79, 70, 229, 0.2);
    color: #818cf8;
}

.dark .tab-button.active {
    color: #818cf8;
    background: #111827;
}

.dark .tab-button.active::after {
    background: #818cf8;
}

.dark .tab-content {
    background: #111827;
}

.dark .placeholder-tab {
    color: #9ca3af;
}

.dark .placeholder-tab h2 {
    color: #f9fafb;
}

/* Dark Mode - Services Tab */
.dark .tab-header h2 {
    color: #f9fafb;
}

.dark .mode-btn {
    background: #1f2937;
    border-color: #374151;
    color: #9ca3af;
}

.dark .mode-btn:hover {
    border-color: #818cf8;
    background: #374151;
}

.dark .mode-btn.active {
    border-color: #818cf8;
    background: linear-gradient(135deg, #4c1d95 0%, #581c87 100%);
    color: white;
}

.dark .search-box input {
    background: #1f2937;
    border-color: #374151;
    color: #f9fafb;
}

.dark .search-box input::placeholder {
    color: #6b7280;
}

.dark .search-box input:focus {
    border-color: #818cf8;
}

.dark .search-info {
    background: #1e3a5f;
    border-left-color: #818cf8;
    color: #93c5fd;
}

.dark .service-card {
    background: #1f2937;
    border-color: #374151;
}

.dark .service-card:hover {
    border-color: #818cf8;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.dark .service-card.semantic-result {
    border-left-color: #818cf8;
    background: linear-gradient(to right, rgba(79, 70, 229, 0.1), #1f2937);
}

.dark .service-category {
    background: #4c1d95;
}

.dark .service-name {
    color: #f9fafb;
}

.dark .service-description {
    color: #9ca3af;
}

.dark .btn-icon:hover {
    background: #374151;
}

/* Dark Mode - Modals */
.dark .modal-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.dark .modal-content {
    background: #1f2937;
}

.dark .modal-header {
    border-bottom-color: #374151;
}

.dark .modal-header h3 {
    color: #f9fafb;
}

.dark .btn-close {
    color: #9ca3af;
}

.dark .btn-close:hover {
    background: #374151;
    color: #f9fafb;
}

.dark .modal-body {
    background: #1f2937;
}

/* Dark Mode - Forms */
.dark .form-group label {
    color: #f9fafb;
}

.dark .form-control {
    background: #111827;
    border-color: #374151;
    color: #f9fafb;
}

.dark .form-control::placeholder {
    color: #6b7280;
}

.dark .form-control:focus {
    border-color: #818cf8;
}

.dark .checkbox-label {
    color: #f9fafb;
}

/* Dark Mode - Buttons */
.dark .btn-secondary {
    background: #374151;
}

.dark .btn-secondary:hover:not(:disabled) {
    background: #4b5563;
}

/* Dark Mode - Loading & Empty States */
.dark .loading {
    color: #9ca3af;
}

.dark .spinner {
    border-color: #374151;
    border-top-color: #818cf8;
}

.dark .empty-state {
    color: #9ca3af;
}

.dark .text-warning {
    color: #fbbf24;
}

/* Dark Mode - Contact Requests Tab */
.dark .contacts-tab {
    color: #f9fafb;
}

.dark .form-select {
    background: #1f2937;
    border-color: #374151;
    color: #f9fafb;
}

.dark .stat-card {
    background: #1f2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dark .stat-card.stat-new {
    border-left-color: #10b981;
}

.dark .stat-card.stat-pending {
    border-left-color: #f59e0b;
}

.dark .stat-label {
    color: #9ca3af;
}

.dark .stat-value {
    color: #f9fafb;
}

.dark .contact-card {
    background: #1f2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-left-color: #374151;
}

.dark .contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.dark .contact-card.status-new {
    border-left-color: #10b981;
}

.dark .contact-card.status-inprogress {
    border-left-color: #f59e0b;
}

.dark .contact-card.status-responded {
    border-left-color: #3b82f6;
}

.dark .contact-card.status-closed {
    border-left-color: #6b7280;
    opacity: 0.7;
}

.dark .contact-info h3 {
    color: #f9fafb;
}

.dark .date {
    color: #9ca3af;
}

.dark .contact-summary {
    color: #d1d5db;
}

.dark .city {
    color: #9ca3af;
}

.dark .contact-details {
    border-top-color: #374151;
}

.dark .details-section h4 {
    color: #d1d5db;
}

.dark .info-item strong {
    color: #f9fafb;
}

.dark .info-item a {
    color: #60a5fa;
}

.dark .message-box,
.dark .notes-box {
    background: #111827;
    border-color: #374151;
    color: #d1d5db;
}

/* ========================================
   ONGLET PARAMÈTRES
   ======================================== */

.settings-tab {
    width: 100%;
}

.settings-section {
    margin-bottom: 40px;
}

.settings-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.stat-icon {
    font-size: 36px;
    line-height: 1;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.info-box {
    background: #e7f3ff;
    border-left: 4px solid #667eea;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #004085;
    margin-bottom: 24px;
}

.database-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.action-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
}

.action-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.action-icon {
    font-size: 32px;
    line-height: 1;
}

.action-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.action-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.text-danger {
    color: #dc3545;
    font-weight: 600;
}

.text-info {
    color: #0c5460;
    font-size: 14px;
    margin: 12px 0;
}

.file-input {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-input:hover {
    border-color: #667eea;
}

.file-selected {
    background: #e7f3ff;
    border-left: 3px solid #667eea;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #004085;
    margin-bottom: 16px;
}

.import-details {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.import-details li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.import-details li:last-child {
    border-bottom: none;
}

.spinner-small {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Dark Mode - Settings Tab */
.dark .settings-section h3 {
    color: #f9fafb;
}

.dark .alert-success {
    background-color: #064e3b;
    color: #6ee7b7;
    border-color: #065f46;
}

.dark .alert-danger {
    background-color: #7f1d1d;
    color: #fca5a5;
    border-color: #991b1b;
}

.dark .stat-card {
    background: #1f2937;
    border-color: #374151;
}

.dark .stat-card:hover {
    border-color: #818cf8;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.dark .stat-label {
    color: #9ca3af;
}

.dark .stat-value {
    color: #f9fafb;
}

.dark .info-box {
    background: #1e3a5f;
    border-left-color: #818cf8;
    color: #93c5fd;
}

.dark .action-card {
    background: #1f2937;
    border-color: #374151;
}

.dark .action-card:hover {
    border-color: #818cf8;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.dark .action-header h4 {
    color: #f9fafb;
}

.dark .action-description {
    color: #9ca3af;
}

.dark .text-danger {
    color: #fca5a5;
}

.dark .text-info {
    color: #93c5fd;
}

.dark .file-input {
    border-color: #374151;
    background: #111827;
    color: #f9fafb;
}

.dark .file-input:hover {
    border-color: #818cf8;
}

.dark .file-selected {
    background: #1e3a5f;
    border-left-color: #818cf8;
    color: #93c5fd;
}

.dark .import-details li {
    border-bottom-color: #374151;
    color: #d1d5db;
}
