main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    width: 80%;
}
.gallery-card {
    position: relative;
    display: inline-block;
}
.gallery-item {
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
.delete-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.delete-btn:hover {
    background: rgba(200, 35, 51, 1);
}
.add-image-button {
    padding: 10px;
    border: none;
    border-radius: 50%;
    background: var(--natuna-light-green);
    font-size: 2rem;
    line-height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add-image-buttonn:hover {
    background: #e9e9e9;
}
dialog {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
}