/* Ваши предыдущие стили */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
.container{
    max-width: 600px;
}

.container li{
    margin-bottom: 0.5rem;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.gallery-item {
    position: relative;
    margin: 5px;
}
.gallery-item img {
    width: 150px;
    height: auto;
    border: 1px solid #ccc;
}
.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    display: none;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.gallery-item:hover .delete-btn {
    display: block;
}
#status {
    margin-top: 10px;
    font-weight: bold;
}
textarea {
    width: 100%;
    height: 100px;
}
button {
    margin-top: 10px;
    padding: 10px 20px;
}