/* === Thème graphique principal (issu de test.html) === */
:root {
    --background: 0 0% 100%;
    --foreground: 220 9% 15%;
    --card: 0 0% 100%;
    --card-foreground: 220 9% 15%;
    --popover: 0 0% 100%;
    --popover-foreground: 220 9% 15%;
    --primary: 220 13% 18%;
    --primary-foreground: 0 0% 98%;
    --primary-hover: 220 13% 25%;
    --primary-light: 220 13% 96%;
    --secondary: 220 9% 97%;
    --secondary-foreground: 220 9% 15%;
    --muted: 220 13% 98%;
    --muted-foreground: 220 9% 46%;
    --accent: 142 71% 45%;
    --accent-foreground: 0 0% 100%;
    --accent-light: 142 71% 97%;
    --success: 142 71% 45%;
    --success-foreground: 0 0% 100%;
    --warning: 43 96% 56%;
    --warning-foreground: 0 0% 100%;
    --destructive: 0 72% 51%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 13% 93%;
    --input: 220 13% 93%;
    --ring: 220 13% 18%;
    --gradient-primary: linear-gradient(135deg, hsl(220, 13%, 18%), hsl(220, 13%, 25%));
    --gradient-success: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(142, 71%, 55%));
    --gradient-subtle: linear-gradient(180deg, hsl(0, 0%, 100%), hsl(220, 13%, 99%));
    --shadow-xs: 0 1px 2px 0 hsl(220 13% 15% / 0.05);
    --shadow-sm: 0 1px 3px 0 hsl(220 13% 15% / 0.08), 0 1px 2px -1px hsl(220 13% 15% / 0.08);
    --shadow-md: 0 4px 6px -1px hsl(220 13% 15% / 0.08), 0 2px 4px -2px hsl(220 13% 15% / 0.08);
    --shadow-lg: 0 10px 15px -3px hsl(220 13% 15% / 0.08), 0 4px 6px -4px hsl(220 13% 15% / 0.08);
    --transition-base: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
    --sidebar-background: 0 0% 99.5%;
    --sidebar-foreground: 220 9% 15%;
    --sidebar-primary: 220 13% 18%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 220 13% 96%;
    --sidebar-accent-foreground: 220 9% 15%;
    --sidebar-border: 220 13% 94%;
    --sidebar-ring: 220 13% 18%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "rlig" 1, "calt" 1;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--muted-foreground) / 0.2);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--muted-foreground) / 0.3);
}

.app-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: hsl(var(--background));
}

.sidebar {
    width: 280px;
    background-color: hsl(var(--sidebar-background));
    border-right: 1px solid hsl(var(--sidebar-border));
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed {
    width: 72px;
}

.sidebar-header {
    padding: 32px 24px;
    border-bottom: 1px solid hsl(var(--sidebar-border) / 0.5);
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.logo svg {
    width: 20px;
    height: 20px;
    color: white;
}

.brand-info {
    transition: var(--transition-base);
}

.collapsed .brand-info {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.brand-title {
    font-size: 18px;
    font-weight: bold;
    color: hsl(var(--sidebar-foreground));
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.brand-subtitle {
    font-size: 12px;
    color: hsl(var(--sidebar-foreground) / 0.6);
    font-weight: 500;
}

.sidebar-group {
    padding: 24px 16px;
}

.sidebar-group-label {
    color: hsl(var(--sidebar-foreground) / 0.5);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
}

.collapsed .sidebar-group-label {
    opacity: 0;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    width: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: hsl(var(--sidebar-foreground));
    font-weight: 500;
    transition: var(--transition-base);
}

.nav-link:hover {
    background-color: hsl(var(--sidebar-accent));
    color: hsl(var(--sidebar-accent-foreground));
}

.nav-link.active {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-text {
    margin-left: 12px;
    transition: var(--transition-base);
}

.collapsed .nav-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
    margin-left: 0;
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header {
    height: 64px;
    border-bottom: 1px solid hsl(var(--border) / 0.3);
    background-color: hsl(var(--background) / 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition-base);
}

.sidebar-toggle:hover {
    color: hsl(var(--foreground));
    background-color: hsl(var(--muted));
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: hsl(var(--muted-foreground));
}

.search-input {
    width: 384px;
    padding: 8px 16px 8px 40px;
    background-color: hsl(var(--muted) / 0.5);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition-base);
}

.search-input:focus {
    outline: none;
    background-color: hsl(var(--background));
    border-color: hsl(var(--primary) / 0.5);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-button {
    position: relative;
    background: none;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-base);
    color: hsl(var(--muted-foreground));
}

.header-button:hover {
    background-color: hsl(var(--muted));
    color: hsl(var(--foreground));
    transform: translateY(-1px);
}

.notification-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background-color: hsl(var(--destructive));
    border-radius: 50%;
}

.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-info h1 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -0.025em;
    color: hsl(var(--foreground));
    margin-bottom: 8px;
}

.page-info p {
    color: hsl(var(--muted-foreground));
    font-size: 18px;
}

.page-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
    background-color: hsl(var(--muted));
}

.btn-primary {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background: hsl(var(--primary-hover));
}

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

.stats-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 12px;
    box-shadow: var(--shadow-xs);
    padding: 32px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    border-color: hsl(var(--border));
}

.stats-card-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.stats-info {
    flex: 1;
}

.stats-title {
    font-size: 12px;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.stats-value {
    font-size: 30px;
    font-weight: bold;
    color: hsl(var(--foreground));
    letter-spacing: -0.025em;
    margin-bottom: 4px;
}

.stats-change {
    font-size: 12px;
    font-weight: 500;
}

.stats-change.positive {
    color: hsl(var(--success));
}

.stats-change.negative {
    color: hsl(var(--destructive));
}

.stats-change.neutral {
    color: hsl(var(--muted-foreground));
}

.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.stats-icon.gradient {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-sm);
}

.stats-icon.gradient svg {
    color: white;
}

.stats-icon:not(.gradient) {
    background-color: hsl(var(--primary-light));
    color: hsl(var(--primary));
}

.stats-card:hover .stats-icon {
    transform: scale(1.1);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.table-container {
    background-color: hsl(var(--card));
    border: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}

.table-header-section {
    padding: 32px;
    border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.table-header-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: hsl(var(--foreground));
    letter-spacing: -0.025em;
    margin-bottom: 8px;
}

.table-header-section p {
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background-color: hsl(var(--muted) / 0.3);
    color: hsl(var(--muted-foreground));
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 32px;
    text-align: left;
    border-bottom: 1px solid hsl(var(--border) / 0.3);
}

.table td {
    padding: 16px 32px;
    border-bottom: 1px solid hsl(var(--border) / 0.3);
    font-size: 14px;
}

.table tr:hover {
    background-color: hsl(var(--muted) / 0.2);
}

.table tr:last-child td {
    border-bottom: 0;
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: hsl(var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--primary));
}

.user-name {
    font-weight: 500;
}

.code-cell {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 13px;
    font-weight: 500;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-success {
    background-color: hsl(var(--success));
    color: hsl(var(--success-foreground));
}

.badge-warning {
    background-color: hsl(var(--warning));
    color: hsl(var(--warning-foreground));
}

.badge-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

.badge-outline {
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    color: hsl(var(--muted-foreground));
    transition: var(--transition-base);
}

.dropdown-trigger:hover {
    background-color: hsl(var(--muted));
    color: hsl(var(--foreground));
    transform: translateY(-1px);
}

.side-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.side-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 12px;
    box-shadow: var(--shadow-xs);
    padding: 24px;
    transition: var(--transition-base);
}

.side-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    border-color: hsl(var(--border));
}

.side-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 24px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 10px;
    flex-shrink: 0;
}

.activity-dot.success {
    background-color: hsl(var(--success));
}

.activity-dot.info {
    background-color: hsl(var(--primary));
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-action {
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--foreground));
    line-height: 1.5;
    margin-bottom: 4px;
}

.activity-meta {
    font-size: 12px;
    color: hsl(var(--muted-foreground));
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.summary-label {
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
}

.summary-value.warning {
    color: hsl(var(--warning));
}

.summary-value.success {
    color: hsl(var(--success));
}

.summary-value.muted {
    color: hsl(var(--muted-foreground));
    font-weight: 500;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fade-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-in {
    animation: scale-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .search-input {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -280px;
        z-index: 100;
        height: 100vh;
    }

    .sidebar.mobile-open {
        left: 0;
    }

    .main-content {
        padding: 16px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .search-input {
        width: 200px;
    }

    .header {
        padding: 0 16px;
    }
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

.alert {
    background-color: hsl(var(--muted));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 16px;
}

/* === Styles pour les tableaux et badges === */

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th {
    background-color: hsl(var(--muted));
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: hsl(var(--foreground));
    border-bottom: 1px solid hsl(var(--border));
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid hsl(var(--border));
    vertical-align: top;
}

.data-table tbody tr:hover {
    background-color: hsl(var(--muted) / 0.5);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
}

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

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-draft {
    background-color: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
}

.status-active {
    background-color: hsl(var(--success) / 0.1);
    color: hsl(var(--success));
}

.status-completed {
    background-color: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
}

.status-cancelled {
    background-color: hsl(var(--destructive) / 0.1);
    color: hsl(var(--destructive));
}

.participant-info {
    line-height: 1.4;
}

.participant-info small {
    color: hsl(var(--muted-foreground));
    font-size: 12px;
}

/* === Styles pour les formulaires === */

.form-container {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 24px;
    box-shadow: var(--shadow-sm);
}

.form {
    max-width: 100%;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: hsl(var(--foreground));
    font-size: 14px;
}

.form-control, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    font-size: 14px;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    transition: var(--transition-base);
    font-family: inherit;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-control:hover, .form-select:hover {
    border-color: hsl(var(--border) / 0.8);
}

.form-text {
    font-size: 12px;
    color: hsl(var(--muted-foreground));
    margin-top: 4px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid hsl(var(--border));
}

.mb-3 {
    margin-bottom: 16px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 8px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 8px;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 8px;
}

@media (max-width: 768px) {
    .col-md-4,
    .col-md-6,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .form-container {
        padding: 20px;
        margin-top: 16px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* === Styles pour les alertes === */

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.5;
}

.alert-success {
    background-color: hsl(var(--success) / 0.1);
    border-color: hsl(var(--success) / 0.2);
    color: hsl(var(--success));
}

.alert-danger {
    background-color: hsl(var(--destructive) / 0.1);
    border-color: hsl(var(--destructive) / 0.2);
    color: hsl(var(--destructive));
}

.alert-warning {
    background-color: hsl(var(--warning) / 0.1);
    border-color: hsl(var(--warning) / 0.2);
    color: hsl(var(--warning));
}

.alert-info {
    background-color: hsl(var(--accent) / 0.1);
    border-color: hsl(var(--accent) / 0.2);
    color: hsl(var(--accent));
}



/* === Styles pour les modals === */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: hsl(var(--card));
    margin: 5% auto;
    padding: 0;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid hsl(var(--border));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: hsl(var(--muted-foreground));
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.modal-close:hover {
    background-color: hsl(var(--muted) / 0.1);
    color: hsl(var(--foreground));
}

.modal-body {
    padding: 24px;
}

/* === Styles pour les badges === */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-info {
    background-color: hsl(var(--accent) / 0.1);
    color: hsl(var(--accent));
}

.badge-secondary {
    background-color: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
}

.badge-success {
    background-color: hsl(var(--success) / 0.1);
    color: hsl(var(--success));
}

.badge-danger {
    background-color: hsl(var(--destructive) / 0.1);
    color: hsl(var(--destructive));
}
