body {
    background: url(./Images/DMToolsBackground.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #000000;
    text-shadow: 2px 2px #000000;
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    gap: 20px; /* Space between divs */
    padding: 20px; /* Optional: adds some breathing room */
}

#leftBox {
    background: url(./Images/DMToolsModal.webp);
    height: 700px;
    width: 450px; /* Adjust as needed */
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    color: #fbff00; /* White text */
    padding: 20px;
    border: 2px solid #000000;
    border-radius: 15px;
    box-sizing: border-box;
}

#rightBox {
    background: url(./Images/RightModal.jpg);
    height: 700px;
    width: 450px; /* Adjust as needed */
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    color: #fbff00; /* White text */
    padding: 20px;
    border: 2px solid #000000;
    border-radius: 15px;
    box-sizing: border-box;
}

#adSetup {
    color: #fbff00;
}

#sessionPrep, #inSession {
    color: #fbff00; /* Ensures these headings are visible */
}

/* Optional: Responsive design */
@media (max-width: 900px) {
    #container {
        flex-direction: column;
        align-items: center;
    }
    #leftBox, #rightBox, #modalBox {
        width: 100%;
        max-width: 450px; /* Matches modalBox width */
        margin-bottom: 20px;
    }
}