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;
}
/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    border-radius: 5px;
    position: relative;
}
.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 */
}

