/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    display: none; /* Hidden by default, shown via JS */
    direction: rtl;
    text-align: center;
    font-family: 'Open Sans', 'Hebrew', Arial, sans-serif;
    padding: 20px 20px 10px 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}

.cookie-consent-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.cookie-consent-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    text-align: center !important;
}

.cookie-consent-content a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

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

.cookie-consent-btn.accept {
    background-color: #28a745;
    color: #fff;
    margin-top: 10px;
}

.cookie-consent-btn.accept:hover {
    background-color: #218838;
}

.cookie-consent-btn.reject {
    background-color: transparent;
    color: #666;
    border: none;
    text-decoration: none;
    font-weight: normal;
    padding: 0;
}

.cookie-consent-btn.reject:hover {
    background-color: transparent;
    color: #333;
}

@media (max-width: 768px) {
    .cookie-consent-banner.show {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }
    
    .cookie-consent-btn {
        width: auto;
        text-align: center;
    }
}
