#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 9999;
    padding: 24px;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid rgba(0, 70, 255, 0.1);
}

#cookie-consent-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-consent-content h3 {
    margin: 0;
    color: #0046ff;
    font-size: 20px;
    font-weight: 600;
}

.cookie-consent-content p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cookie-settings-options {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 10px 0 16px;
    padding: 16px;
    background-color: #f8f9fc;
    border-radius: 6px;
}

.cookie-option {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0046ff;
}

.cookie-option p {
    margin-left: 28px !important;
    font-size: 13px !important;
    color: #555 !important;
}

/* Button styles that match your site's existing design */
.button-secondary {
    background-color: #f5f5f5;
    color: #333;
    border-color: #ddd;
}

.button-secondary:hover {
    background-color: #e9e9e9;
    transform: translateY(-1px);
}

.button-tertiary {
    background-color: transparent;
    color: #0046ff;
    text-decoration: none;
    padding: 10px 12px;
}

.button-tertiary:hover {
    color: #0035cc;
    background-color: rgba(0, 70, 255, 0.05);
    text-decoration: underline;
}

.button-back {
    display: flex;
    align-items: center;
    gap: 6px;
}

.button-back::before {
    content: "←";
    display: inline-block;
    margin-right: 4px;
}

.consent-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    #cookie-consent-banner {
        max-width: 700px;
        bottom: 30px;
        right: 30px;
        left: auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .button {
        width: 100%;
    }
} 