/* auto grow textarea based on the content entered by user */
.auto-grow-textarea {
    field-sizing: content;
    resize: none;
    min-height: 64px !important;
}

/* to make images support responsive */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents unwanted whitespace at the bottom */
}


/* Post images album */
.album-thumb {
    width: auto; /* Retain original aspect ratio */
    max-width: 100%; /* Prevent horizontal scrollbars on small screens */
    object-fit: cover; /* Ensure no image distortion */
    transition: transform 0.1s ease-in-out;
}

/* Optional hover effect */
.album-thumb:hover {
    transform: scale(1.01);
}
