﻿.mp-box {
    width: 260px;
    padding: 10px;
    border-radius: 10px;
    background: var(--bs-body-bg);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.mp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .mp-header button {
        border: none;
        background: transparent;
        font-size: 18px;
        cursor: pointer;
    }

.mp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.mp-item {
    padding: 6px;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
}

    .mp-item:hover {
        background: rgba(var(--bs-primary-rgb), .15);
    }

    .mp-item.active {
        background: var(--bs-primary);
        color: #fff;
    }
