/* Design System: Liquid Glass (Dark/Light Responsive) */
.glass-panel {
    background: rgba(255, 255, 255, 0.7); /* Base claire transparente */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.4), 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.dark .glass-panel {
    background: rgba(17, 24, 39, 0.4); /* Base noire transparente */
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

/* Animations et utilitaires globaux */
::selection {
    background-color: rgba(34, 197, 94, 0.4); /* Visibloo vert */
    color: white;
}

/* Onglets de navigation des tables */
.db-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    margin-bottom: -1px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
}
.db-toggle-btn:hover {
    color: #e5e7eb;
    border-bottom-color: rgba(255,255,255,0.2);
}
.db-toggle-btn.active {
    color: #22c55e;
    border-bottom-color: #22c55e;
    font-weight: 600;
}

/* Custom Select for Inline Editing */
select.inline-edit-select {
    appearance: none;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #4b5563;
    padding: 0.125rem 1.25rem 0.125rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234b5563' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.125rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem 1.25rem;
    max-width: 130px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.dark select.inline-edit-select {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}
select.inline-edit-select:hover {
    border-color: rgba(0, 0, 0, 0.3);
}
.dark select.inline-edit-select:hover {
    border-color: rgba(255, 255, 255, 0.3);
}
select.inline-edit-select:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
}
select.inline-edit-select option {
    background-color: #ffffff;
    color: #1f2937;
}
.dark select.inline-edit-select option {
    background-color: #1f2937;
    color: white;
}

.action-btn {
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.1s;
}
.action-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}
