/* image_container.css – styles for user image containers */
.image-container {
    border: 2mm solid #ddd;
    border-radius: 4px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-container:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.image-container img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.image-info {
    margin-top: 8px;
    font-size: 0.9em;
    line-height: 1.4;
}

.image-info .username {
    font-weight: bold;
    color: #333;
}

.image-info .description {
    color: #666;
    font-style: italic;
    margin-top: 4px;
    word-wrap: break-word;
}