#awsimagecontainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.aws-image-wrapper {
    margin: 10px;
    text-align: center;
    flex-shrink: 0; /* Prevent images from shrinking */
}

.aws-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.aws-image-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.aws-image-caption {
    font-family: inter;
    font-weight: 400;
    font-size: 0.7em;
    margin-top: 5px;
    color: #666;
    word-wrap: break-word;
    max-width: 100%;
}