/* =========================
   META BOX WRAPPER
========================= */
#easysiga_gallery_meta {
    padding: 15px;
}

/* =========================
   SECTION HEADINGS
========================= */
#easysiga_gallery_meta h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

/* =========================
   LAYOUT OPTIONS (GRID / MASONRY / LIST)
========================= */
.easysiga-layout-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.easysiga-layout-option {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    background: #f9f9f9;
    transition: 0.2s;
    font-weight: 500;
}

.easysiga-layout-option input {
    display: none;
}

/* Active selection */
.easysiga-layout-option.active {
    border-color: #2271b1;
    background: #e7f1ff;
    color: #2271b1;
}

/* Hover */
.easysiga-layout-option:hover {
    border-color: #2271b1;
}

/* =========================
   IMAGE PREVIEW GRID
========================= */
.easysiga-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.easysiga-thumb {
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.easysiga-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Remove button */
.easysiga-remove {
    position: absolute;
    top: 2px;
    right: 5px;
    color: #fff;
    background: red;
    border-radius: 50%;
    font-size: 14px;
    padding: 0 6px;
    cursor: pointer;
}

/* =========================
   INPUT FIELDS
========================= */
#easysiga_gallery_meta input[type="number"],
#easysiga_gallery_meta select,
#easysiga_gallery_meta input[type="text"] {
    width: 100%;
    max-width: 200px;
    padding: 5px;
}

/* =========================
   BUTTON
========================= */
.easysiga-add-images {
    margin-top: 10px;
}

/* =========================
   DIVIDER
========================= */
#easysiga_gallery_meta hr {
    margin: 20px 0;
}