.musthapa-tabs {
    margin-bottom: 10px;
}
.musthapa-tabs .musthapa-tab {
    padding: 8px 16px;
    margin-right: 5px;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
}
.musthapa-tabs .musthapa-tab.active {
    background: #007cba;
    color: #fff;
}
.musthapa-tab-content {
    display: none;
}
.musthapa-tab-content.active {
    display: block;
}
.musthapa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.musthapa-modal-content {
    background: #fff;
    padding: 20px;
    width: 500px;
    max-width: 90%;
    border-radius: 5px;
    position: relative;
}
.musthapa-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.musthapa-form-grid label {
    display: block;
    margin-bottom: 10px;
}
.musthapa-checkbox-list {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}
.musthapa-checkbox-list li {
    margin-bottom: 8px;
}
.musthapa-modal-footer {
    margin-top: 15px;
    text-align: right;
}

.musthapa-form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px; /* spacing between fields */
    max-width: 400px;
    margin: 0 auto;
}

.musthapa-form-grid label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.musthapa-form-grid input {
    margin-top: 6px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}