/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 10000;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.cookie-consent-header h3 {
    color: white;
    margin: 0;
}

.cookie-details-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-consent-text {
    margin-bottom: 1rem;
}

.cookie-consent-options {
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.cookie-option input {
    margin-right: 10px;
    margin-top: 5px;
}

.cookie-option label {
    font-weight: bold;
    margin-right: 10px;
}

.cookie-option p {
    width: 100%;
    margin-top: 5px;
    margin-left: 24px;
    font-size: 0.8rem;
    color: #ccc;
}

.cookie-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-consent-actions button {
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
}

/* Responsive styles for cookie banner */
@media (max-width: 768px) {
    .cookie-consent-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-details-btn {
        margin-top: 10px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-consent-actions button {
        width: 100%;
        margin-bottom: 10px;
    }
}
