 .dots-container {
    text-align: center;
    margin-top: 10px;
    height: 20px;
    display: flex
;
    bottom: 99px;
    align-items: center;
}

.dots-container .dot {
     border-radius: 50%;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 6px;
    background-color: gray;
    cursor: pointer;
    transition: background-color 0.3s ease;
}



.loader_image {
    margin: -20px 0 0 -20px;
    display: none;
    position: absolute;
    top: 48%;
    left: 50%;
    width: 40px;
    border-radius: 50%;
    height: 40px;
    margin: -15px 0 0 -15px;
    border: 10px solid white;
    border-top: 5px solid transparent;
    animation: spin 0.001s linear infinite;
    z-index: 10;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    padding: 10px;
    margin-top: 70px;
}


.dots-container .dot.active {
    background-color: white;
    width: 10px;
    height: 10px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.image-thumbnail {
    object-fit: cover;
    border: 1px solid #2c3e500a;
    min-height: 70pxx;
}

    .image-thumbnail:hover {
        transform: scale(0.99);
        transition: .3s;
        cursor: pointer;
    }

.image-loader{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
      border-radius: 50%;
    margin: -15px 0 0 -15px;
    position: absolute;
    border: 5px solid #aeaeae;
    border-top: 5px solid transparent;
    animation: spin 0.5s linear infinite;
    transition: opacity 0.5s ease;

}






.image-wrapper img:hover {
   transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

 

.post-images {
  border-radius: 4px;
    display: flex
;
    gap: 8px;
}



.image-wrapper {
    border-radius: 4px;
    width: 75px;
    height: 75px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.image-wrapper img {
    border-radius: 4px;
    width: 100%;
    height: 75px;
    object-fit: cover;
    display: block;
}


