/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-header h3 {
    margin-bottom: 0;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.cookie-body {
    margin-bottom: 1.5rem;
}

.cookie-options {
    margin-top: 1.5rem;
}

.cookie-option {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.cookie-option label {
    font-weight: 600;
    margin-left: 0.5rem;
}

.cookie-description {
    margin-top: 0.5rem;
    margin-left: 1.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    z-index: 999;
    max-width: 300px;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    margin-bottom: 1rem;
}

.cookie-banner-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-banner-buttons button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Responsive Styles for Cookie Consent */
@media (max-width: 768px) {
    .cookie-footer {
        flex-direction: column;
    }
    
    .cookie-footer button {
        width: 100%;
    }
    
    .cookie-banner {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}
