#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483646;
    display: none;
}

#cookie-consent-banner .cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

#cookie-consent-banner .cookie-consent-card {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: 28px 32px;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 12px 12px 0 0;
}

#cookie-consent-banner .cookie-consent-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

#cookie-consent-banner .cookie-consent-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

#cookie-consent-banner .cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

#cookie-consent-banner .cookie-consent-buttons button {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid;
    min-width: 140px;
    text-align: center;
}

#cookie-consent-banner .btn-cookie-customize {
    background: #fff;
    color: #1a73e8;
    border-color: #1a73e8;
}

#cookie-consent-banner .btn-cookie-customize:hover {
    background: #f0f6ff;
}

#cookie-consent-banner .btn-cookie-reject {
    background: #fff;
    color: #1a73e8;
    border-color: #1a73e8;
}

#cookie-consent-banner .btn-cookie-reject:hover {
    background: #f0f6ff;
}

#cookie-consent-banner .btn-cookie-accept {
    background: #1a73e8;
    color: #fff;
    border-color: #1a73e8;
}

#cookie-consent-banner .btn-cookie-accept:hover {
    background: #1557b0;
    border-color: #1557b0;
}

@media (max-width: 576px) {
    #cookie-consent-banner .cookie-consent-card {
        padding: 20px 16px;
    }

    #cookie-consent-banner .cookie-consent-buttons {
        flex-direction: column;
    }

    #cookie-consent-banner .cookie-consent-buttons button {
        width: 100%;
    }
}
