/* --- MODAL STYLES (Legal) --- */
.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

#legalModal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
border: none;
padding: 0;
margin: 0;
opacity: 0;
display: none;
transition: opacity 0.6s ease;
background-color: rgba(0, 0, 0, 0.25);
backdrop-filter: blur(15px);
}

#legalModal.is-open {
opacity: 1;
visibility: block;
}

#legalModal .modal-content {
background-color: transparent;
color: #E5E7EB;
width: 90%;
max-width: 800px;
max-height: 90vh;
padding: 30px;
border-radius: 10px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
}

#legalModal .close-button {
position: absolute;
top: 10px;
right: 15px;
background: none;
border: none;
font-size: 30px;
cursor: pointer;
color: #adadad;
z-index: 1000;
}

.legal-header-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.legal-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.legal-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.1);
}

.tab-button {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
    color: #9CA3AF;
    cursor: pointer;
    transition: color 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

.tab-button.active-tab {
    color: #E5E7EB;
    border-bottom-color: #adadad;
}

.legal-text-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 15px;
}

.legal-text-content.hidden {
    display: none !important;
}

/* Content Formatting */
.legal-text-content h3 { font-size: 1.25rem; font-weight: bold; margin-top: 1.5rem; }
.legal-text-content p { margin-bottom: 1rem; line-height: 1.5; }
.legal-text-content a { color: #5B9DD9; text-decoration: underline; }
.legal-text-content table { width: 100%; border-collapse: collapse; background-color: #2b2b2b; }
.legal-text-content th, .legal-text-content td { border: 1px solid #4a4a4a; padding: 8px; }

/* --- Fix for Bullet Points and Blockquotes --- */

.legal-text-content ul {
    list-style-type: disc !important;
    margin-left: 20px !important;
    margin-bottom: 1rem !important;
}

.legal-text-content li {
    margin-bottom: 0.5rem !important;
    display: list-item !important; /* Forces the bullet to appear */
}

.legal-text-content blockquote {
    border-left: 4px solid #adadad !important;
    padding-left: 15px !important;
    margin: 1rem 0 !important;
    color: #adadad !important;
    font-style: italic !important;
}

/* --- Heading Fixes --- */
.legal-text-content h3 {
    font-size: 1.25rem !important;
    font-weight: bold !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    color: #E5E7EB !important;
}

.legal-text-content h4 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-top: 1rem !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    color: #E5E7EB !important;
}

/* --- Bold Text Fix --- */
.legal-text-content b,
.legal-text-content strong {
    font-weight: bold !important;
}
