﻿.legal-issues-prompt {
    display: block;
    position: fixed;
    height: 90vh;
    width: 82vw;
    background: white;
    left: 0;
    right: 0;
    margin-left: auto; /* Increase this percentage for more to the left */
    margin-right: 10%;
    top: 0;
    bottom: 0;
    margin-bottom: 5vh; /* Increase this percentage for higher positioning */
    margin-top: auto;
    border: 1px solid white;
    border-radius: 10px;
    overflow: auto;
    color: black;
    opacity: 0;
    transition: 0.3s ease-in;
}

.legal-issues-title {
    font-size: 38px;
    font-weight: bold;
    color: #001f38;
    padding: 20px; /* Padding around the text */
    max-width: 800px; /* Maximum width */
    margin: 0 auto; /* Center the div */
}

    /* The text/title itself */
    .legal-issues-title h1 {
        font-size: 38px;
        font-weight: bold;
        color: #001f38;
        text-align: center; /* Center the text */
        margin: 0; /* Remove default margin */
    }

/* The container div */
.legal-issues-content {
    padding: 20px; /* Padding inside the box */
    max-width: 800px; /* Maximum width */
    margin: 30px auto; /* 30px margin on top and bottom, auto centers horizontally */
    border : 1px solid #001f38;
    border-radius: 20px;
}

    .legal-issues-content h1 {
        font-size: 30px;
        font-weight: bold;
        color: #001f38;
        margin: 0; /* Remove default margin */
        margin-bottom: 10px !important
    }

    /* The text inside the box */
    .legal-issues-content p {
        font-size: 16px; /* Font size */
        color: #001f38;
        margin: 0; /* Remove default margin */
    }

.legal-popup-close {
    position: sticky;
    right: 20px;
    background: white;
    height: 50px;
    width: 52px;
    top: 30px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0px 0px 0px 2px #001f38, 0px 0px 0px 4px white, 1px 3px 10px 1px black;
    cursor: pointer;
    margin: 0px;
    float: right;
    opacity: 0.95;
    z-index: 1;
}

    .legal-popup-close:hover {
        background: #001f38;
        color: white;
    }