.img-wrapper {
    position: relative;
    display: inline-block;
    margin: 20px 10px;
    vertical-align: top;
    width: 200px;  /* or whatever width you prefer */
    height: 275px; /* height is image height + room for description */
}

.img-wrapper img {
    max-width: 100%;
    max-height: 75%; /* This will leave space for the description at the bottom */
    display: block;
    margin: 0 auto;
}


.delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: red;
    font-size: 24px;
    cursor: pointer;
}

.input-wrapper{
    position: absolute;
    bottom: 5px;
    left: 5px;
    margin-top: 20px;
}
.img-desc {

    width: 90%;  /* Adjust if needed */
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.7);  /* semi-transparent white */
    border: 1px solid #ccc;
    z-index: 10;
    box-sizing: border-box;
}

.img-desc:focus {
    border-color: #007BFF;  /* A blue border when focused */
}