/**
 * Cookie Consent Popup Styles
 */

.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-consent-popup {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-consent-message {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

.cookie-consent-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-policy-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

.cookie-accept-button {
    min-width: 120px;
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cookie-consent-popup {
        padding: 15px;
    }
    
    .cookie-consent-message {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-policy-link {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .cookie-accept-button {
        width: 100%;
    }
}