/**
 * Styles du banner RGPD
 * MadiPlan Analytics
 */

#madiplan-gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1d2327;
    color: #fff;
    padding: 20px;
    z-index: 999999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.madiplan-gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.madiplan-gdpr-content p {
    margin: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.madiplan-gdpr-buttons {
    display: flex;
    gap: 10px;
}

.madiplan-gdpr-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.madiplan-btn-accept {
    background: #0073aa;
    color: #fff;
}

.madiplan-btn-accept:hover {
    background: #005a87;
}

.madiplan-btn-decline {
    background: #fff;
    color: #1d2327;
}

.madiplan-btn-decline:hover {
    background: #f0f0f1;
}

/* Responsive */
@media (max-width: 782px) {
    .madiplan-gdpr-content {
        flex-direction: column;
        text-align: center;
    }
    
    .madiplan-gdpr-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .madiplan-gdpr-buttons button {
        width: 100%;
    }
}
