/* Consent Dialog Styles */

.consent-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #4B5563;
    color: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    border-top: 2px solid #6B7280;
}

.consent-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.consent-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.consent-dialog h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.consent-dialog p {
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}

.consent-dialog p strong {
    font-weight: 600;
    color: #F4D03F;
}

.consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-buttons button {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#consent-accept {
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
    color: #4C1D95;
}

#consent-accept:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

#consent-reject {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#consent-reject:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.consent-dialog a {
    color: #F4D03F;
    text-decoration: underline;
    font-size: 0.8rem;
    font-weight: 500;
}

.consent-dialog a:hover {
    color: #FFF;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .consent-text {
        gap: 0.375rem;
    }

    .consent-buttons {
        flex-direction: row;
        justify-content: stretch;
        gap: 0.75rem;
    }

    .consent-buttons button {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .consent-dialog {
        padding: 0.875rem 1rem;
    }

    .consent-dialog h3 {
        font-size: 0.95rem;
    }

    .consent-dialog p {
        font-size: 0.8rem;
    }

    .consent-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .consent-buttons button {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}
