
.List_container{
    grid-auto-flow: dense;
}

.add-forum-container{
    /* border: 2px solid black; */
    /* padding: 10px; */
    width: 100%;
    margin: auto;
    display: flex;
    /* justify-content: flex-end; */
    align-content: center;
}
.add-forum-container .forum_btn{
    width: 150px;
    background: #36eaf7;
    color: white;
    border-radius: 40px;
    text-align: center;
    padding: 10px 0;
    margin-top: 1rem;
    font-size: 1rem;
    transition: all 0.4s ease-out;
    outline: none;
    border: none;
    box-shadow: inset 0 0 0 0 #36eaf7;
    padding: 10px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.forum_btn:hover{
    background: #96f8ff;
}

.delbtn{
    /* border: 2px solid black; */
    background-color: #FF3115;
    opacity: 1;
    color: white !important;
    display: inline-block;
    max-width: 60px;
    justify-self: flex-end;
    align-self: flex-end;
    text-align: center;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 0.8rem !important;
    margin-right: 10px;
    cursor: pointer;
}
#togglebtn{
    background-color: #d1d1d1;
}
#togglebtn:hover{
    background-color: #55ffa1;
}
#editbtn{
    background-color: #36eaf7;
}
.gbtn{
    display: inline-flex;
    float: right;
}
/* .description_content_item pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
} */
@media screen and (max-width: 980px){
    /* .description_content_item p,.description_content_item pre {
        width: 100%;
        font-size: 0.8rem;
        line-height: 1.3rem;
        font-weight: normal;
        padding: 5px 0;
    } */
}
span .fa-eye,span  .fa-comment-dots{

    margin-right: 0.5rem;
    color: #FF3115;
}
.detail_count{
    display: inline-block;
    padding: 0 !important;
    width: 100% !important;
}
.detail_count span{
    margin-right: 1rem;
}
@media screen and (max-width:480px) {
    .detail_count{
       display: flex;
       flex-wrap: wrap;
       row-gap:0.5rem;
    }
}
.forum_form_container{
    width: 100vw;
    height: 100vh;
    background-color: #97979785;
    position: fixed;
    left: 0;
    top: 0;
    z-index:0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    /* display: none; */
    transition: all 0.5s ease-in-out;
}
.forum_form_container.active{
    visibility: visible;
    opacity: 1;
    z-index:1000;
    display: flex;
}
.forum_exit{
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.forum_exit:hover{
    color: #FF3115;
}
.forum_form{
    background-color: white;
    width: 50%;
    min-height: 50% ;
    border-radius: 10px;
}
.forum_form_header{
    border-bottom: 3px solid #FF3115;
    /* width: 100%; */
    /* height: 200px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px;
}
.forum_btn{
    background-color: #FF3115;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    box-shadow: inset 0 0 0 0 #36eaf7;
    margin-top: 1rem;
    justify-self: flex-end;
    align-self: flex-start;
}
.forum_btn:hover{
    box-shadow: inset 0 0 0 40px #36eaf7;
}
.forum_title{
    font-size: 1.3rem;
    font-weight: 500;
    font-style: italic;
    /* letter-spacing: 5px; */
}
.forum_title i{
    color: #FF3115;
} 
.forum_exit{
    font-size: 1rem;
    font-weight: 500;
}
.forum_form_body{
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;
    padding: 16px;
}

.input_control{
    
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    /* border: 2px solid black; */
    margin: auto;
    margin-top: 1.5rem;
}
.input_control input,.input_control textarea{
    padding: 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid rgb(177, 177, 177);
}
.input_control textarea{

    min-height: 150px;
    /* width: 80%; */
}
@media screen and (max-width:980px){
    .forum_form{
        width: 70%;
    }
}
@media screen and (max-width:720px){
    .forum_form{
        width: 80%;
    }
    .forum_title{
        font-size: 1.2rem;
    }
}
@media screen and (max-width:520px){
    .forum_form{
        width: 90%;
    }
}