/* styles.css */
body {
    font-family: Arial, sans-serif;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 1600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.close {
    color: #000000;
    float: middle;
    font-size: 15px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: not-allowed;
    display: none;
}

.close:enabled {
    cursor: pointer;
}

.close:hover:enabled,
.close:focus:enabled {
    color: black;
    text-decoration: none;
}

.terms-container {
    height: 220px;
    overflow-y: scroll;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
}
