/* Cookie Consent Floating Card */
#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Moved to Left */
    width: 380px;
    /* Increased from 320px */
    background-color: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    /* Slightly stronger shadow */
    border-radius: 12px;
    z-index: 9999;
    font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s forwards;
    border: 1px solid #e0e0e0;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-consent-content {
    padding: 25px;
    /* Increased padding */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-consent-text {
    font-size: 15px;
    /* Slightly larger text */
    line-height: 1.6;
    color: #333;
}

.cookie-consent-text a {
    color: #063E04;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    /* Increased gap */
}

.cookie-btn {
    padding: 10px 0;
    /* Taller buttons */
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    /* Larger button text */
    font-weight: bold;
    transition: all 0.2s ease;
}

.cookie-btn-allow {
    background-color: #063E04;
    /* Brand Green */
    color: #fff;
}

.cookie-btn-allow:hover {
    background-color: #085205;
    box-shadow: 0 3px 10px rgba(6, 62, 4, 0.3);
}

.cookie-btn-deny {
    background-color: #f5f5f5;
    color: #555;
}

.cookie-btn-deny:hover {
    background-color: #e5e5e5;
}

@media (max-width: 480px) {
    #cookie-consent-banner {
        /* On mobile, span full width at bottom */
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    }

    .cookie-consent-content {
        padding: 20px;
    }
}