/**
 * Gallery Metabox Styles
 */
#domilocus-gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.domilocus-gallery-image {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.domilocus-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.domilocus-gallery-image .remove-image {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3232;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
}
