/* NJ-99098: Instructor Return Request — styles */

/* -----------------------------------------------
   Deactivation modal (shown on login for all
   inactive instructors, both auto and manual)
----------------------------------------------- */
.inactive-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.inactive-modal-overlay.is-visible {
    display: flex;
    align-items: center;
    justify-content: center;
}
.inactive-modal-box {
    background: #fff;
    border-radius: 4px;
    padding: 30px;
    max-width: 480px;
    width: 90%;
    text-align: center;
}
.inactive-modal-box .modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
.inactive-modal-box .modal-body {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}
.inactive-modal-box .btn-modal-close {
    display: inline-block;
    padding: 10px 30px;
    background: #ff8626;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.4rem;
    cursor: pointer;
}
.inactive-modal-box .btn-modal-close:hover {
    background: #e07318;
}


/* -----------------------------------------------
   Return Request page content
----------------------------------------------- */
.reactivation-page {
    padding: 30px;
    background: #fff;
    min-height: 100vh;
}
.reactivation-page h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff8626;
    padding-bottom: 10px;
}
.reactivation-page .desc {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}
.btn-wrap {
    margin: 20px 0;
}
.btn-reactivation {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px 14px 36px;
    background: #ff8626;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
.btn-reactivation:hover {
    background: #e07318;
    color: #fff;
}
.btn-reactivation-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.btn-reactivation:disabled,
.btn-reactivation.is-disabled {
    background: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}
.waiting-msg {
    display: none;
    font-size: 1.5rem;
    color: #ff8626;
    margin-top: 10px;
    font-weight: bold;
}
.rejection-reason {
    margin-top: 20px;
    padding: 15px;
    background: #fff4f4;
    border-left: 4px solid #e53935;
    border-radius: 2px;
}
.rejection-reason .rejection-label {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e53935;
    margin-bottom: 6px;
}
.rejection-reason .rejection-text {
    font-size: 1.4rem;
    color: #555;
    white-space: pre-wrap;
}
