/* Styles pour les promotions */
.has-promo {
    border: 2px solid #ffd700 !important;
    position: relative;
    overflow: visible !important;
}

.promo-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.promo-indicator {
    color: #ffa500;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Styles pour les indicateurs d'affluence */
.affluence-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 12px;
}

.affluence-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.affluence-low .affluence-dot {
    background-color: #4caf50;
}

.affluence-medium .affluence-dot {
    background-color: #ffa726;
}

.affluence-high .affluence-dot {
    background-color: #f44336;
}

/* Style pour le modal des promotions */
.promo-modal .modal-content {
    border-radius: 12px;
}

.promo-modal .modal-header {
    background: #ffd700;
    border-radius: 12px 12px 0 0;
}

.promo-details {
    padding: 15px;
    border-radius: 8px;
    background: #fff9e6;
    margin: 10px 0;
}

.promo-details h5 {
    color: #b8860b;
    margin-bottom: 10px;
}

.promo-details p {
    margin-bottom: 5px;
    color: #666;
}
