body {
    background-color: rgb(29, 29, 29);
    color: white;
}

h1, h2, h3 {
    color: white;
}

hr {
    color: white;
}

#main-forum-group {
    border-radius: 25px;
    background-color: #3e3f3e;
    padding: 20px;
    width: 75%;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
}

#forum-header {
    display: flex;
    justify-content: space-evenly;
}

#input-container {
    flex-grow: 1;
}

#input-container label, #input-container input {
    width: 85%;
}

#input-container input {
    border: none;
    border-radius: 5px;
    height: 1.5em;
}

#forum-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#radio-buttons label {
    vertical-align: baseline;
    display: block;
}

#checkboxes, #radio-buttons {
    flex-grow: 1;
    width: 50%;
}

#checkboxes label {
    display: block;
}

#break-item {
  flex-basis: 100%; /* Forces the item to take up 100% of the container's width */
  height: 0; /* Optional: keeps the inserted item collapsed visually */
}

#textarea {
    flex-basis: 100%;
    width: 85%;
}

#textarea p, #textarea textarea {
    width: 100%;
    border-radius: 5px;
}

button {
    width: 100%;
    height: 2.5em;
    background-color: rgb(5, 78, 5);
    color: white;
    border-radius: 15px;
    border-color: rgb(29, 29, 29);
}

label, p {
    color: white;
}

a {
    color: #5555d3;
    text-decoration: underline;
}