/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #334155;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #cbd5e1;
}

.cookie-banner-text a {
    color: #84CC16;
    text-decoration: none;
    font-weight: 500;
}

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

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #84CC16;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #65a30d;
}

.cookie-btn-reject {
    background-color: #DC2626;
    color: white;
}

.cookie-btn-reject:hover {
    background-color: #b91c1c;
}

.cookie-btn-customize {
    background-color: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

.cookie-btn-customize:hover {
    background-color: #475569;
    color: white;
}

/* Cookie Preferences */
.cookie-preferences {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 20px;
    background-color: #475569;
    border-radius: 8px;
}

.cookie-preferences h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: white;
}

.cookie-category {
    margin-bottom: 16px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.cookie-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #cbd5e1;
}

.cookie-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-label input[type="checkbox"]:disabled {
    opacity: 0.6;
}

.cookie-name {
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 4px;
}

.cookie-description {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.4;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    .cookie-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .cookie-preferences-actions {
        flex-direction: column;
    }
    
    .cookie-preferences-actions .cookie-btn {
        width: 100%;
    }
}