body {
    background-color: rgb(22, 88, 214, 0.85) !important;
}

.postingImg {
    background: white;
    color: #1658D6;
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
}

.timedisplay {
    background: none;
    border: none;
    color: #939393;
    font-size: 10px;
}

.fileinput {
    padding-left: 30px !important;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.imagebox {
    width: 100%;
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

 ::-webkit-scrollbar {
    width: 2px;
}

 ::-webkit-scrollbar-track {
    background: none;
}

 ::-webkit-scrollbar-thumb {
    background: none;
}

.imagebox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}

.imagebox img:hover {
    transform: scale(1.1);
}

@media (max-width:1280px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
    .imagebox {
        height: 300px;
    }
}

@media (max-width: 650px) {
    .input-text2 {
        width: 140px;
    }
    .input-pw2 {
        width: 90px;
    }
}


/* modal */

.modalform {
    height: 100px;
    background-color: white;
}

.modal-body {
    padding: 0 20px 20px 20px !important;
}

.modalform form {
    height: 100px;
}

.modalform form input {
    border: none;
    padding: 10px 15px;
    border-radius: 15px;
}

.input-pw2 {
    width: 95px;
}

.input-pw2 {
    background-color: #5382DA;
}

.input-pw2::placeholder {
    color: white;
}

.input-text2 {
    background: #e1e1e1;
    flex-grow: 1;
}

.input-submit2 {
    background-color: #1658D6;
    color: white;
}

.modal-header {
    border-bottom: none !important;
    font-size: 30px;
}