/*
 * ExpoManager Pro - Styles Frontend
 * Version: 1.0.0
 */

/* ========================================
   DASHBOARD PROFESSIONNEL
======================================== */

/* En-tête du dashboard */
.expo-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    backgroun: #667eea;
    border-radius: 12px;
    color: white;
}

.expo-dashboard-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.expo-dashboard-title .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

.expo-dashboard-subtitle {
    margin: 8px 0 0 0;
    opacity: 0.9;
    font-size: 14px;
}

.expo-dashboard-actions .button-primary {
    background: white;
    border-color: white;
    color: #667eea;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expo-dashboard-actions .button-primary:hover {
    background: #f9fafb;
    border-color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Grille de statistiques */
.expo-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.expo-stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.expo-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.expo-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentColor;
}

.expo-stat-blue { color: #2563eb; }
.expo-stat-green { color: #16a34a; }
.expo-stat-orange { color: #ea580c; }
.expo-stat-purple { color: #9333ea; }

.expo-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: currentColor;
    opacity: 0.1;
    flex-shrink: 0;
}

.expo-stat-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: currentColor;
    opacity: 10;
}

.expo-stat-details {
    flex: 1;
}

.expo-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 4px;
}

.expo-stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.expo-stat-badge,
.expo-stat-alert {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: currentColor;
    opacity: 0.1;
}

.expo-stat-badge .dashicons,
.expo-stat-alert .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: currentColor;
    opacity: 10;
}

.expo-stat-percentage {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 14px;
    font-weight: 600;
    color: currentColor;
}

.expo-stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0,0,0,0.05);
}

.expo-progress-bar {
    height: 100%;
    background: currentColor;
    transition: width 1s ease;
}

/* Layout principal */
.expo-dashboard-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .expo-dashboard-main {
        grid-template-columns: 1fr;
    }
}

/* Widgets */
.expo-dashboard-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
}

.expo-widget-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expo-widget-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expo-widget-header .dashicons {
    color: #6b7280;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.expo-widget-link {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.expo-widget-link:hover {
    color: #1d4ed8;
}

.expo-widget-link .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.expo-widget-content {
    padding: 24px;
}

/* Stats par type */
.expo-type-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expo-type-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.expo-type-stat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.expo-type-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.expo-type-stat-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.expo-type-stat-value strong {
    font-size: 20px;
    color: #1f2937;
}

.expo-type-stat-value span {
    color: #6b7280;
}

.expo-type-stat-bar {
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
}

.expo-type-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

/* Liste événements */
.expo-events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expo-event-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s;
}

.expo-event-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.expo-event-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expo-event-icon .dashicons {
    color: white;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.expo-event-info {
    flex: 1;
}

.expo-event-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.expo-event-meta {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.expo-event-meta .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.expo-event-separator {
    margin: 0 4px;
}

.expo-event-count {
    text-align: right;
}

.expo-count-number {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.expo-count-label {
    font-size: 12px;
    color: #6b7280;
}

/* Actions rapides */
.expo-quick-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.expo-quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.expo-quick-action:hover {
    background: white;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateX(4px);
}

.expo-quick-action .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Dernières inscriptions */
.expo-recent-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expo-recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.3s;
}

.expo-recent-item:hover {
    background: #f3f4f6;
}

.expo-recent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.expo-recent-info {
    flex: 1;
}

.expo-recent-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.expo-recent-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.expo-recent-time {
    color: #6b7280;
}

.expo-recent-status {
    flex-shrink: 0;
}

.expo-status-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expo-status-confirmed {
    background: #dcfce7;
    color: #16a34a;
}

.expo-status-pending {
    background: #fed7aa;
    color: #ea580c;
}

.expo-status-badge .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* État vide */
.expo-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.expo-empty-state .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    opacity: 0.3;
    margin-bottom: 16px;
}

.expo-empty-state p {
    margin: 0 0 16px 0;
}

/* ===== Formulaire d'inscription ===== */
.expo-registration-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.expo-form {
    width: 100%;
}

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

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

.expo-form-group input[type="text"],
.expo-form-group input[type="email"],
.expo-form-group input[type="tel"],
.expo-form-group input[type="url"],
.expo-form-group select,
.expo-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.expo-form-group input:focus,
.expo-form-group select:focus,
.expo-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

/* ===== Types de participants ===== */
.expo-participant-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
}

.expo-type-option {
    cursor: pointer;
    position: relative;
}

.expo-type-option input[type="radio"] {
    display: none;
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    border: 3px solid transparent;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    min-height: 160px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Effet de brillance au survol */
.type-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.type-card:hover::before {
    opacity: 1;
    left: 100%;
}

/* Badge de sélection */
.type-card::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.type-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.expo-type-option input[type="radio"]:checked + .type-card {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea08, #764ba208);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3),
                0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-4px);
}

.expo-type-option input[type="radio"]:checked + .type-card::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Conteneur de l'icône avec cercle coloré */
.type-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s ease;
}

.type-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #105287;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.expo-type-option:hover .type-icon::before {
    opacity: 0.2;
}

.expo-type-option input[type="radio"]:checked + .type-card .type-icon::before {
    opacity: 0.3;
}

.type-icon svg {
    width: 40px;
    height: 40px;
    stroke: #667eea;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.expo-type-option:hover .type-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #667eea25, #764ba225);
}

.expo-type-option:hover .type-icon svg {
    stroke: #5568d3;
    stroke-width: 2.5;
}

.expo-type-option input[type="radio"]:checked + .type-card .type-icon {
    background: linear-gradient(135deg, #667eea30, #764ba230);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.expo-type-option input[type="radio"]:checked + .type-card .type-icon svg {
    stroke: #667eea;
    stroke-width: 3;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.4));
}

/* Label avec badge coloré */
.type-label {
    font-weight: 700;
    color: #1f2937;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.expo-type-option:hover .type-label {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    color: #667eea;
}

.expo-type-option input[type="radio"]:checked + .type-card .type-label {
    background:#667eea;
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

/* Animation de pulsation pour attirer l'attention */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.5);
    }
}

.expo-type-option input[type="radio"]:checked + .type-card {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== Sections ===== */
.expo-section {
    margin: 30px 0;
    padding: 25px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.expo-section h3 {
    margin: 0 0 20px 0;
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

/* ===== Informations événement ===== */
.expo-event-info {
    background: #667eea;
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.expo-event-info h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: white;
    border: none;
    padding: 0;
}

.expo-event-info p {
    margin: 5px 0;
    opacity: 0.95;
    line-height: 1.6;
}

/* ===== Checkbox RGPD ===== */
.expo-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.expo-checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.expo-checkbox span {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.expo-checkbox a {
    color: #667eea;
    text-decoration: none;
}

.expo-checkbox a:hover {
    text-decoration: underline;
}

/* ===== Bouton de soumission ===== */
.expo-form-submit {
    margin-top: 30px;
    text-align: center;
}

.expo-submit-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.expo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.expo-submit-btn:active {
    transform: translateY(0);
}

.expo-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===== Messages ===== */
#expo-messages {
    margin-bottom: 20px;
}

.expo-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expo-message-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.expo-message-error {
    background: #fee2e2;
    color: #7f1d1d;
    border-left: 4px solid #ef4444;
}

.expo-message-loading {
    background: #dbeafe;
    color: #1e3a8a;
    border-left: 4px solid #3b82f6;
}

/* ===== Badge Download ===== */
.expo-badge-download-btn {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.expo-badge-download-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: white;
}

/* ===== Loading Spinner ===== */
.expo-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: expo-spin 1s ease-in-out infinite;
}

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .expo-registration-form {
        padding: 15px;
    }

    .expo-participant-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .type-card {
        padding: 25px 12px;
        min-height: 140px;
    }

    .type-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 12px;
    }

    .type-icon svg {
        width: 34px;
        height: 34px;
    }

    .type-label {
        font-size: 13px;
        padding: 6px 14px;
    }

    .expo-section {
        padding: 15px;
    }

    .expo-event-info {
        padding: 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .expo-participant-types {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .type-card {
        padding: 20px 15px;
        min-height: 120px;
    }

    .type-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .type-icon svg {
        width: 30px;
        height: 30px;
    }

    .type-label {
        font-size: 12px;
        padding: 6px 12px;
    }

    .expo-submit-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ===== Admin Styles ===== */
.expo-manager-admin {
    margin-right: 20px;
}

.expo-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.expo-stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.expo-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 12px;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

/* Couleurs spécifiques pour chaque type d'icône */
.stat-icon-calendar,
.stat-icon-chart {
    background: linear-gradient(135deg, #3b82f615, #2563eb15);
}

.stat-icon-calendar svg,
.stat-icon-chart svg {
    stroke: #3b82f6;
}

.stat-icon-users,
.stat-icon-user {
    background: linear-gradient(135deg, #10b98115, #059f6915);
}

.stat-icon-users svg,
.stat-icon-user svg {
    stroke: #10b981;
}

.stat-icon-clock {
    background: linear-gradient(135deg, #f59e0b15, #d9780915);
}

.stat-icon-clock svg {
    stroke: #f59e0b;
}

.stat-icon-check {
    background: linear-gradient(135deg, #10b98115, #059f6915);
}

.stat-icon-check svg {
    stroke: #10b981;
}

.stat-icon-building {
    background: linear-gradient(135deg, #667eea15, #764ba215);
}

.stat-icon-building svg {
    stroke: #667eea;
}

.stat-icon-news {
    background: linear-gradient(135deg, #ef444415, #dc262615);
}

.stat-icon-news svg {
    stroke: #ef4444;
}

.stat-icon-globe {
    background: linear-gradient(135deg, #a855f715, #9333ea15);
}

.stat-icon-globe svg {
    stroke: #a855f7;
}

.stat-content h3 {
    margin: 0;
    font-size: 36px;
    color: #1f2937;
}

.stat-content p {
    margin: 5px 0 0 0;
    color: #6b7280;
    font-size: 14px;
}

.expo-status-badge,
.expo-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.expo-status-active,
.expo-status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.expo-status-pending {
    background: #fef3c7;
    color: #92400e;
}

.expo-status-closed {
    background: #fee2e2;
    color: #7f1d1d;
}

.expo-type-exposant {
    background: #dbeafe;
    color: #1e40af;
}

.expo-type-visiteur {
    background: #d1fae5;
    color: #065f46;
}

.expo-type-presse {
    background: #fee2e2;
    color: #991b1b;
}

.expo-type-international {
    background: #f3e8ff;
    color: #6b21a8;
}

.expo-filters {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.expo-filters select,
.expo-filters button {
    padding: 8px 16px;
    border-radius: 6px;
}

.expo-recent-section {
    margin-top: 40px;
}

.expo-recent-section h2 {
    margin-bottom: 20px;
}

.expo-stats-section {
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.expo-stats-section h2 {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    color: #1f2937;
}
