
/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    position: relative;
    padding: 0px;
    border-radius: 10px;
    border: 1px solid #888;
    width: 30%;
}
.model_post_sign {
    padding: 20px;
}
.closed, .close, .closed_md {
    position: absolute;
    font-size: 30px;
    font-weight: bold;
    right: -9px;
    top: -12px;
    background: #CC3366;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50px;
}

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

.tab {
    display: flex;
    cursor: pointer;
}

.tablinks {
    flex: 1;
    padding: 10px;
    text-align: center;
    background: #eee;
    border: none;
    cursor: pointer;
}

.tablinks.active {
    background: #ddd;
    font-weight: bold;
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}
.modal-content input {
    margin: 12px 0px;
}

.filter-form.filter-container form {
    display: flex;
    gap: 10px;
}
