/* ============================================
   SHARY.EVENTS - Application Styles
   Charte graphique unifiée
   ============================================ */

/* ========== VARIABLES ========== */
:root {
    /* Couleurs principales */
    --shary-violet: #6C5CE7;
    --shary-violet-light: #A29BFE;
    --shary-violet-dark: #5B4BD5;
    --shary-bleu-marine: #2D3E50;
    --shary-corail: #FF6B6B;
    --shary-corail-light: #FF8E8E;
    
    /* Couleurs neutres */
    --shary-blanc: #FFFFFF;
    --shary-gris-light: #F8F9FA;
    --shary-gris: #E2E8F0;
    --shary-gris-medium: #94A3B8;
    --shary-gris-dark: #64748B;
    --shary-noir: #1E2426;
    
    /* Couleurs de statut */
    --shary-success: #10B981;
    --shary-warning: #F59E0B;
    --shary-danger: #EF4444;
    --shary-info: #3B82F6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Ombres */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    
    /* Sidebar */
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 80px;
    --header-height: 65px;
    
    /* Alias pour compatibilité */
    --color-primary: var(--shary-violet);
    --color-text: var(--shary-noir);
    --color-text-light: var(--shary-gris-dark);
    --color-text-muted: var(--shary-gris-medium);
    --color-bg: var(--shary-gris-light);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--shary-noir);
    background: var(--shary-gris-light);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--shary-violet);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--shary-violet-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== LAYOUT - APP CONTAINER ========== */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* ========== SIDEBAR ========== */
.app-sidebar {
    width: var(--sidebar-width);
    background: var(--shary-bleu-marine);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.sidebar-header {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.08);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
}

.sidebar-logo img {
    height: 32px;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    display: none;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0.75rem;
    overflow-y: auto;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.sidebar-nav .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.sidebar-nav .nav-link span {
    white-space: nowrap;
}

.sidebar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar-nav .nav-link.active {
    background: var(--shary-violet);
    color: white;
}

.nav-section-title {
    padding: 1rem 1.25rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.sidebar-footer {
    padding: 1rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-footer .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.sidebar-footer .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* ========== MAIN CONTENT ========== */
.app-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ========== HEADER ========== */
.app-header {
    height: var(--header-height);
    background: white;
    border-bottom: 1px solid var(--shary-gris);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--shary-bleu-marine);
    cursor: pointer;
    padding: 0.5rem;
}

.header-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--shary-bleu-marine);
    margin: 0;
}

.header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--shary-gris-dark);
}

.header-breadcrumb a {
    color: var(--shary-gris-dark);
}

.header-breadcrumb a:hover {
    color: var(--shary-violet);
}

.header-breadcrumb .separator {
    color: var(--shary-gris-medium);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    background: none;
    border: none;
    font-family: inherit;
}

.user-dropdown-toggle:hover {
    background: var(--shary-gris-light);
}

.user-dropdown-toggle i {
    font-size: 0.7rem;
    color: var(--shary-gris-dark);
    transition: var(--transition-fast);
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.user-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.user-greeting {
    font-size: 0.75rem;
    color: var(--shary-gris-dark);
    line-height: 1.2;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--shary-bleu-marine);
    line-height: 1.2;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 1000;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-user-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
}

.dropdown-user-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.dropdown-user-info {
    display: flex;
    flex-direction: column;
}

.dropdown-user-info strong {
    font-size: 0.95rem;
    color: var(--shary-bleu-marine);
}

.dropdown-user-info span {
    font-size: 0.8rem;
    color: var(--shary-gris-dark);
}

.dropdown-divider {
    height: 1px;
    background: var(--shary-gris);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    color: var(--shary-noir);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--shary-gris-dark);
}

.dropdown-item:hover {
    background: var(--shary-gris-light);
    color: var(--shary-violet);
}

.dropdown-item:hover i {
    color: var(--shary-violet);
}

.dropdown-item.text-danger {
    color: var(--shary-danger);
}

.dropdown-item.text-danger i {
    color: var(--shary-danger);
}

.dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* ========== PAGE CONTENT ========== */
.app-content {
    flex: 1;
    padding: 1.5rem;
}

/* ========== CARDS ========== */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--shary-gris);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--shary-bleu-marine);
    margin: 0;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--shary-gris);
    background: var(--shary-gris-light);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

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

.btn-primary {
    background: var(--shary-violet);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: var(--shary-violet-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.btn-secondary {
    background: var(--shary-gris-light);
    color: var(--shary-bleu-marine);
    border: 1px solid var(--shary-gris);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--shary-gris);
    border-color: var(--shary-gris-medium);
}

.btn-danger {
    background: var(--shary-danger);
    color: white;
}

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

.btn-success {
    background: var(--shary-success);
    color: white;
}

.btn-success:hover:not(:disabled) {
    background: #059669;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--shary-violet);
    color: var(--shary-violet);
}

.btn-outline:hover:not(:disabled) {
    background: var(--shary-violet);
    color: white;
}

.btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius-md);
}

.btn-icon.btn-sm {
    width: 30px;
    height: 30px;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--shary-bleu-marine);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1px solid var(--shary-gris);
    border-radius: var(--radius-md);
    background: white;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--shary-violet);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-control::placeholder {
    color: var(--shary-gris-medium);
}

.form-control.is-invalid {
    border-color: var(--shary-danger);
}

.form-text {
    font-size: 0.8rem;
    color: var(--shary-gris-dark);
    margin-top: 0.35rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* ========== TABLES ========== */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--shary-gris);
}

.table th {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--shary-gris-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--shary-gris-light);
}

.table tbody tr:hover {
    background: var(--shary-gris-light);
}

.table-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* ========== BADGES ========== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.badge-primary {
    background: rgba(108, 92, 231, 0.1);
    color: var(--shary-violet);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--shary-success);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--shary-warning);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--shary-danger);
}

/* ========== BOOTSTRAP MODAL ENHANCEMENTS ========== */
/* Ces styles améliorent les modals Bootstrap sans casser leur comportement */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--shary-gris);
}

.modal-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--shary-bleu-marine);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--shary-gris);
    background: var(--shary-gris-light);
}

.btn-close:focus {
    box-shadow: none;
}

/* ========== ALERTS ========== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.alert i {
    margin-top: 0.15rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--shary-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--shary-danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--shary-warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--shary-info);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: var(--shary-gris-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-state-icon i {
    font-size: 2rem;
    color: var(--shary-gris-medium);
}

.empty-state h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--shary-bleu-marine);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--shary-gris-dark);
    margin-bottom: 1.5rem;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== LOADING ========== */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--shary-gris);
    border-top-color: var(--shary-violet);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--shary-gris-dark); }
.text-danger { color: var(--shary-danger); }
.text-success { color: var(--shary-success); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .app-sidebar {
        transform: translateX(-100%);
    }
    
    .app-container.sidebar-open .app-sidebar {
        transform: translateX(0);
    }
    
    .app-main {
        margin-left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .app-content {
        padding: 1rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .table-responsive {
        overflow-x: auto;
    }
    
    .user-info {
        display: none;
    }
    
    .header-title {
        font-size: 1rem;
    }
}

/* Collapsed sidebar */
.app-container.sidebar-collapsed .app-sidebar {
    width: var(--sidebar-collapsed-width);
}

.app-container.sidebar-collapsed .sidebar-nav .nav-link span,
.app-container.sidebar-collapsed .sidebar-footer .nav-link span,
.app-container.sidebar-collapsed .sidebar-logo img {
    display: none;
}

.app-container.sidebar-collapsed .app-main {
    margin-left: var(--sidebar-collapsed-width);
}

/* ========== AUTH PAGES ========== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: 2rem;
}

.auth-container {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 420px;
}

.auth-container h1 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--shary-noir);
}

.auth-form .form-group {
    margin-bottom: 1rem;
}

.auth-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--shary-bleu-marine);
    margin-bottom: 0.35rem;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1px solid var(--shary-gris);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--shary-violet);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.auth-form button[type="submit"] {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    background: var(--shary-violet);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 0.5rem;
}

.auth-form button[type="submit"]:hover {
    background: var(--shary-violet-dark);
    transform: translateY(-1px);
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--shary-gris-dark);
}

.auth-links a {
    color: var(--shary-violet);
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ========== TABLE RESPONSIVE ========== */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ========== BANNER STYLES ========== */
.banners-container h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--shary-bleu-marine);
    margin-bottom: 1.5rem;
}

.banner-category {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--shary-bleu-marine);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--shary-gris);
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.banner-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-fast);
    position: relative;
}

.banner-edit-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--shary-violet, #6C5CE7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.25);
}

.banner-edit-icon:hover {
    background: var(--shary-violet-hover, #5B4BCF);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(108, 92, 231, 0.35);
}

.banner-edit-icon:active {
    transform: translateY(0) scale(1);
}

.banner-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.banner-card h3 {
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--shary-bleu-marine);
    margin: 0;
}

.banner-image {
    aspect-ratio: 16/9;
    background: var(--shary-gris-light);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-create-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px dashed var(--shary-gris);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--shary-gris-dark);
    transition: var(--transition-fast);
    min-height: 200px;
}

.banner-create-card:hover {
    border-color: var(--shary-violet);
    color: var(--shary-violet);
    background: rgba(108, 92, 231, 0.03);
}

.banner-create-card .add-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--shary-gris-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.banner-create-card:hover .add-icon {
    background: var(--shary-violet);
    color: white;
}
