/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-consent-content {
    flex: 1;
    padding-right: 20px;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

.cookie-accept-btn {
    background-color: #4CAF50;
    color: white;
}

.cookie-accept-btn:hover {
    background-color: #45a049;
}

.cookie-settings-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-settings-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
        padding: 15px;
    }
    
    .cookie-consent-content {
        padding-right: 0;
        padding-bottom: 15px;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}