
/* ===== COOKIE CONSENT STYLES ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    color: black;
    padding: 0;
    border-top: 1px solid #666;
    box-shadow: 0 -2px 10px #666;
    z-index: 1050;
    font-family: FeatureFlatHeadline, Times New Roman, Times, serif;
    height: 50vh; /* Mobile height */
}

@media (min-width: 768px) {
    .cookie-consent-banner {
        height: 45vh; /* Desktop height */
    }
}

.cookie-consent-banner p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

#info-column {
    height: 66.66%;
}

.cookie-consent-banner .order-2 {
    height: 33.33%;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .cookie-consent-banner {
        height: 45vh; /* Desktop height */
    }

    #info-column, .cookie-consent-banner .order-2 {
        height: 100%;
    }
}

/* Modal styles kept for compatibility */
.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-consent-button {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-consent-button-primary {
    background-color: red;
    color: white;
    border: 1px solid red;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 1.0rem;
}

.cookie-consent-button-primary:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cookie-consent-button-secondary {
    background-color: transparent;
    color: black;
    border: 1px solid #666;
}

.cookie-consent-button-secondary:hover {
    background-color: #666;
    color: red;
}

.cookie-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1060;
}

.cookie-modal-content {
    background-color: white;
    color: black;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px #666;
    max-width: 400px;
    width: 90%;
    border: 1px solid #666;
    font-family: FeatureFlatHeadline, Times New Roman, Times, serif;
    margin: 0;
    position: relative;
    /* Reset potential conflicting styles from global .modal-content */
    top: auto;
    left: auto;
    transform: none;
}

.cookie-modal-content h3 {
    color: black;
    margin-bottom: 1.5rem;
}

.cookie-modal-content p {
    color: black;
    margin-bottom: 1rem;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category label {
    flex-grow: 1;
    margin-right: 1rem;
    color: black;
    cursor: pointer;
}
