/* Cookie banner container - Using your new design */
.cookie-banner-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15), 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset;
    z-index: 9999;
    overflow: hidden;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner-container.hidden {
    display: none;
}

/* Center on small screens */
@media (max-width: 600px) {
    .cookie-banner-container {
        left: 50%;
        right: auto;
        bottom: 20px;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 100%;
    }
}

/* Banner content */
.cookie-banner-content {
    padding: 24px;
}

/* Text styling */
.banner-title {
    margin: 0 0 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #2C3E50;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.banner-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #5A6C7D;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.banner-text a {
    color: var(--color-1st);
    text-decoration: none;
    font-weight: 500;
}

.banner-text a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* Button container */
.banner-buttons {
    display: flex;
    gap: 12px;
}

/* Button styling */
.cookie-button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cookie-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Reject button */
.reject-button {
    background-color: #F4F5F6;
    color: #5A6C7D;
    border: 1px solid #E1E4E8;
}

.reject-button:hover {
    background-color: #E8EAED;
}

/* Accept button - Using website primary color */
.accept-button {
    background-color: var(--color-1st);
    color: rgb(255, 255, 255);
}

/* Accept button hover effect */
.accept-button:hover {
    opacity: 0.9;
}