.mh-btn {
    padding: 10px 16px;
    background: #4A4DFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.mh-popup-overlay {
    position: fixed;
    display: none;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.mh-popup {
    background: #fff;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.mh-popup-close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 22px;
    cursor: pointer;
}

.mh-radio-group {
    margin: 10px 0 15px;
    display: flex;
    justify-content: space-between;
}

.mh-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
}

.mh-btn {
    padding: 10px 16px;
    background: #4A4DFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.mh-popup-overlay {
    position: fixed;
    display: none;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.mh-popup {
    background: white;
    width: 600px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.mh-popup-close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 22px;
    cursor: pointer;
}

.mh-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.mh-table th, .mh-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.mh-table th {
    background: #f1f1f1;
    font-weight: bold;
}
.mh-pagination {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mh-pagination button:disabled {
    background: #ccc;
    cursor: not-allowed;
}
