
.mig-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.mig-item {
    flex: 1 0 22%;
    border: 2px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
.mig-item img {
    width: 100%;
    height: auto;
}
#mig-gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.mig-thumb {
    width: 132px;
    height: 96px;
    overflow: hidden;
    border: 1px solid #ccc;
    position: relative;
}
.mig-thumb img {
    width: 100%;
    height: auto;
}
.mig-remove-image {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mig-item {
        flex: 1 0 48%;
    }
}
@media (max-width: 480px) {
    .mig-item {
        flex: 1 0 98%;
    }
}

.mig-filter-btns {
    margin: 20px 0;
}

.mig-filter-btns button {
    margin: 0 5px;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border: none;
    cursor: pointer;
}

.mig-filter-btns button.active {
    background: #2980b9;
}
