/* Privacy Policy Modal Styles */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(53, 52, 68, 0.85);
    align-items: center;
    justify-content: center;
}

.privacy-modal-content {
    background-color: #23243a;
    color: #e0e0e0;
    margin: auto;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalFadeIn 0.4s ease-in-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.privacy-modal-header {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.privacy-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.privacy-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.privacy-modal-body {
    padding: 20px;
    max-height: calc(85vh - 70px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(0, 0, 0, 0);
}

/* Custom scrollbar for the modal content */
.privacy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* Loading spinner */
.loading-spinner {
    text-align: center;
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Style the privacy policy content */
#privacyPolicyContent [data-custom-class="title"] {
    font-size: 24px !important;
    color: #fff !important;
    margin-bottom: 15px;
}

#privacyPolicyContent [data-custom-class="subtitle"] {
    color: #ccc !important;
    margin-bottom: 20px;
}

#privacyPolicyContent [data-custom-class="heading_1"], 
#privacyPolicyContent [data-custom-class="heading_2"] {
    color: #fff !important;
    margin-top: 25px;
    margin-bottom: 10px;
}

#privacyPolicyContent [data-custom-class="body_text"] {
    color: #e0e0e0 !important;
    line-height: 1.6;
    margin-bottom: 10px;
}

#privacyPolicyContent [data-custom-class="link"] {
    color: var(--primary-color) !important;
    text-decoration: none;
}

#privacyPolicyContent [data-custom-class="link"]:hover {
    text-decoration: underline;
}

#privacyPolicyContent ul, 
#privacyPolicyContent ol {
    padding-left: 20px;
}

#privacyPolicyContent li {
    margin-bottom: 10px;
}

/* Lock body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .privacy-modal-body {
        max-height: calc(90vh - 60px);
        padding: 15px;
    }
    
    .privacy-modal-header {
        padding: 12px 15px;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.3rem;
    }
} 