.lms-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.lms-modal.active {
    display: flex;
}

.lms-modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.lms-modal-header {
    margin-bottom: 12px;
}

.lms-modal-header .lms-modal-header-title {
    font-size: 18px;
}

.lms-modal-x-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

.lms-modal-footer {
    display: flex;
    gap: 10px;
}

.lms-modal-footer-secondary-btn,
.lms-modal-footer-primary-btn {
    flex: 1;
}

.lms-modal-footer-secondary-btn {
    background: #fff;
    color: #046bd2;
    border: 1px solid #046bd2;
}

.lms-modal-footer-primary-btn {
    background: #046bd2;
    color: #fff;
    border: 1px solid #046bd2;
}