
/*
 ************************************************* FORUM *************************************************
*/
.forum_content {
    width: 70%;
    border-radius: 10px;
    margin-top: 20px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    color: black;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.category_box {
	margin-top: 10px;
	margin-bottom: 20px;
    background-color: #6c0909;
	border: 2px solid black;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    font-size: 18px;
    text-align: left;
    outline: none;
    transition: 0.4s;
}
.category_panel {
    width: 100%;
	margin-top: -20px;
	margin-bottom: 20px;
    display: block;
    overflow: hidden;
    background-color: #222;
}
.forum_box {
	margin-top: 5px;
	margin-bottom: 5px;
    width: auto;
    height: 75px;
    background-color: #242424;
	display: flex;
	align-items: center;
	justify-content: flex-start;
    border: 1px solid white;
}

.forum_name {
    margin-left: 15px;
    margin-right: auto;
    font-size: 20px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
}

/*
 ************************************************* FORUMDISPLAY *************************************************
*/

.forumdisplay_content {
    width: 70%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; 
    color: white;
    text-decoration: none;
}

.forumdisplay_title {
    width: 100%;
    padding: 5px 0;
    margin-bottom: 5px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    border: 2px solid black;
    background-color: #6c0909;
    color: white;
}

.create_topic_button {
    margin-top: 10px;
    margin-bottom: 10px;
    float: right;
    padding: 10px 20px;
    border: 1px solid black;
    background-color: #6c0909;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.create_topic_button:hover {
    background-color: #800000;
}

.forumdisplay_threads_list {
    margin-top: 10px;
    width: 100%;
    height: auto;
    color: white;
    position: relative;
    clear: both; /* Hinzugefügte Anweisung, um Floats zu klären */
}
.forumdisplay_threads {
    margin-top: 2px;
    width: 100%;
    height: 75px;
    background-color: #242424;
    border: 1px solid #6c0909;
    display: flex;
    text-decoration: none;
    color: white;
}
.forumdisplay_threads a {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.forumdisplay_threads_box1 {
    height: 75px;
    width: 100%;
    overflow: hidden; /* Overflow auf hidden setzen */
}
.forumdisplay_threads_box1 p {
    margin-top: 10px;
    margin-left: 5px;
    font-size: 20px;
    text-align: left;
}
.forumdisplay_threads_box2 {
    height: 75px;
    padding: 0px 10px;
    text-align: center

}
.forumdisplay_threads_box2 i {
    margin-top: 25px;
    font-size: 25px;
}
.forumdisplay_threads_box3 {
    height: 75px;
    width: 25%;
}
.forumdisplay_threads_box3 p {
    margin-top: 10px;
    margin-left: 5px;
    font-size: 20px;
    text-align: left;
}
.forumdisplay_threads_box4 {
    height: 75px;
    width: 25%;
}
.forumdisplay_threads_box4 p {
    margin-top: 10px;
    margin-left: 5px;
    font-size: 20px;
    text-align: left;
}