body {
    font-family: sans-serif;
    padding: 50px;
}

/* Hide scrollbar, but allow scrolling */
body {
    overflow-y: scroll;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
    display: none;
}

.signup-form,
.login-form {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: inline-block;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* ========================================================================= */
/* ⚠️ CRITICAL DEVELOPER WARNING: MODAL CENTERING JAVASCRIPT REQUIREMENT ⚠️  */
/* ========================================================================= */
/* The .modal class utilizes Flexbox (justify-content & align-items) to      */
/* perfectly center the modal box vertically and horizontally on any screen. */
/*                                                                           */
/* WHEN OPENING THIS MODAL VIA JAVASCRIPT, YOU MUST SET:                     */
/* document.getElementById('myModal').style.display = 'flex';                */
/*                                                                           */
/* DO NOT SET IT TO 'block'. DOING SO WILL BREAK VERTICAL CENTERING AND      */
/* FORCE THE MODAL TO RENDER AT THE ABSOLUTE TOP OF THE VIEWPORT.            */
/* ========================================================================= */
.modal {
    display: none;
    /* Hidden by default, toggled to 'flex' via JS */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
    max-width: 600px;
    /* Prevent it from getting too wide on large screens */
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* margin is removed to allow .modal flexbox to perfectly center it */
    margin: auto;
    /* Fallback if display:block is used instead of flex */
}

.close {
    color: #aaa;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

ul {
    text-align: center;
}

li {
    text-align: left;
}

/* Content Container */
.content-container {
    display: flex;
    flex-direction: row;
    /* Stack items horizontally */
    align-items: center;
    /* Vertically align items */
    margin-bottom: 20px;
    /* Add space below the container */
}

.community-board-image {
    margin-right: 20px;
    /* Add space between image and text */
    width: 100px;
    /* Adjust as needed */
    height: auto;
    /* Maintain aspect ratio */
}