@import '_content/Blazicons/Blazicons.ugzwxlf6d1.bundle.scp.css';

/* _content/Admin/Components/Features/AccessDenied/AccessDenied.razor.rz.scp.css */
.access-denied-container[b-scns678evd] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.error-card[b-scns678evd] {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.error-code[b-scns678evd] {
  font-size: 6rem;
  font-weight: bold;
  color: #dc3545;
  margin: 0;
  line-height: 1;
}

.error-title[b-scns678evd] {
  font-size: 2rem;
  color: #343a40;
  margin-top: 10px;
  margin-bottom: 20px;
}

.error-message[b-scns678evd] {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-go-home[b-scns678evd] {
  background-color: #0d6efd;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-go-home:hover[b-scns678evd] {
  background-color: #0b5ed7;
}
/* _content/Admin/Components/Features/Auth/Login.razor.rz.scp.css */
.login-container[b-5rawp0m96k] {
    display: flex;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b214d; 
    overflow: hidden;
}

.left-pane[b-5rawp0m96k] {
    flex: 5;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2fe 100%);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.alert-danger-custom[b-5rawp0m96k] {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #f5c6cb;
    text-align: center;
}

.logo-container[b-5rawp0m96k] {
    position: absolute;
    top: 3rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo[b-5rawp0m96k] {
    height: 100px;
    object-fit: contain;
}

.welcome-text[b-5rawp0m96k] {
    margin-top: 5rem;
}

.welcome-text h2[b-5rawp0m96k] {
    color: #0b214d;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.welcome-text h1[b-5rawp0m96k] {
    color: #ff5a00;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.right-pane[b-5rawp0m96k] {
    flex: 5;
    background-color: #0b214d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.login-card[b-5rawp0m96k] {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-title[b-5rawp0m96k] {
    color: #0b214d;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group label[b-5rawp0m96k] {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.text-danger[b-5rawp0m96k] {
    color: #dc3545;
    margin-left: 2px;
}

.custom-input[b-5rawp0m96k] {
    width: 100%;
    background-color: #f4f7fc;
    border: 1px solid #e1e5ee;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s;
}

.custom-input:focus[b-5rawp0m96k] {
    outline: none;
    border-color: #0b214d;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 33, 77, 0.1);
}

.forgot-password-container[b-5rawp0m96k] {
    text-align: right;
    margin-top: 0.5rem;
}

.forgot-password-link[b-5rawp0m96k] {
    color: #ff5a00;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password-link:hover[b-5rawp0m96k] {
    text-decoration: underline;
}

.btn-login[b-5rawp0m96k] {
    width: 100%;
    background-color: #0b214d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover[b-5rawp0m96k] {
    background-color: #081736;
}

.mt-3[b-5rawp0m96k] {
    margin-top: 1.2rem;
}

@media (max-width: 992px) {
    .login-container[b-5rawp0m96k] {
        flex-direction: column;
    }
    
    .left-pane[b-5rawp0m96k] {
        border-radius: 0;
        border-bottom-left-radius: 30% 20%;
        border-bottom-right-radius: 30% 20%;
        padding: 3rem 2rem;
        text-align: center;
    }

    .logo-container[b-5rawp0m96k] {
        position: relative;
        top: 0;
        left: 0;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .welcome-text[b-5rawp0m96k] {
        margin-top: 0;
    }

    .welcome-text h1[b-5rawp0m96k] {
        font-size: 2.2rem;
    }
}
/* _content/Admin/Components/Features/ChangePassword/ChangePassword.razor.rz.scp.css */
.icon-box[b-qosefaf3fd] {
  width: 65px;
  height: 65px;
  background: #f0f4ff;
  color: #0d47a1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.input-group-text[b-qosefaf3fd] {
  border-color: #dee2e6;
}
.form-control:focus[b-qosefaf3fd] {
  box-shadow: none;
  border-color: #0d47a1;
}
/* _content/Admin/Components/Features/ForgotPassword/ForgotPassword.razor.rz.scp.css */
.login-container[b-gs2sfn79ek] {
    display: flex;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b214d; 
    overflow: hidden;
}

.left-pane[b-gs2sfn79ek] {
    flex: 5;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2fe 100%);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.alert-danger-custom[b-gs2sfn79ek] {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #f5c6cb;
    text-align: center;
}

.logo-container[b-gs2sfn79ek] {
    position: absolute;
    top: 3rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo[b-gs2sfn79ek] {
    height: 100px;
    object-fit: contain;
}

.welcome-text[b-gs2sfn79ek] {
    margin-top: 5rem;
}

.welcome-text h2[b-gs2sfn79ek] {
    color: #0b214d;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.welcome-text h1[b-gs2sfn79ek] {
    color: #ff5a00;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.right-pane[b-gs2sfn79ek] {
    flex: 5;
    background-color: #0b214d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.login-card[b-gs2sfn79ek] {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-title[b-gs2sfn79ek] {
    color: #0b214d;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group label[b-gs2sfn79ek] {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.text-danger[b-gs2sfn79ek] {
    color: #dc3545;
    margin-left: 2px;
}

.custom-input[b-gs2sfn79ek] {
    width: 100%;
    background-color: #f4f7fc;
    border: 1px solid #e1e5ee;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s;
}

.custom-input:focus[b-gs2sfn79ek] {
    outline: none;
    border-color: #0b214d;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 33, 77, 0.1);
}

.forgot-password-container[b-gs2sfn79ek] {
    text-align: right;
    margin-top: 0.5rem;
}

.forgot-password-link[b-gs2sfn79ek] {
    color: #ff5a00;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password-link:hover[b-gs2sfn79ek] {
    text-decoration: underline;
}

.btn-login[b-gs2sfn79ek] {
    width: 100%;
    background-color: #0b214d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover[b-gs2sfn79ek] {
    background-color: #081736;
}

.mt-3[b-gs2sfn79ek] {
    margin-top: 1.2rem;
}

@media (max-width: 992px) {
    .login-container[b-gs2sfn79ek] {
        flex-direction: column;
    }
    
    .left-pane[b-gs2sfn79ek] {
        border-radius: 0;
        border-bottom-left-radius: 30% 20%;
        border-bottom-right-radius: 30% 20%;
        padding: 3rem 2rem;
        text-align: center;
    }

    .logo-container[b-gs2sfn79ek] {
        position: relative;
        top: 0;
        left: 0;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .welcome-text[b-gs2sfn79ek] {
        margin-top: 0;
    }

    .welcome-text h1[b-gs2sfn79ek] {
        font-size: 2.2rem;
    }
}

.forgot-pwd-header[b-gs2sfn79ek] {
    margin-bottom: 2rem;
}

.forgot-pwd-header h4[b-gs2sfn79ek] {
    color: #0b214d;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.forgot-pwd-header p[b-gs2sfn79ek] {
    color: #64748b; 
    font-size: 0.9rem;
    margin-bottom: 0;
}

.mb-4[b-gs2sfn79ek] {
    margin-bottom: 1.5rem;
}

.action-buttons[b-gs2sfn79ek] {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-submit[b-gs2sfn79ek] {
    background-color: #0b214d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover[b-gs2sfn79ek] {
    background-color: #081736;
}

.btn-cancel[b-gs2sfn79ek] {
    background-color: #e0f2fe; /* ပုံပါအတိုင်း အပြာနုရောင် */
    color: #0b214d;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cancel:hover[b-gs2sfn79ek] {
    background-color: #bae6fd;
}

/* Success Message လေးပြချင်ရင် သုံးရန် */
.alert-success-custom[b-gs2sfn79ek] {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #c3e6cb;
    text-align: center;
}
/* _content/Admin/Components/Features/Profile/Profile.razor.rz.scp.css */
.avatar-circle[b-4sng551fla] {
  width: 120px;
  height: 120px;
  font-size: 3rem;
  background: linear-gradient(135deg, #556ee6, #344aae);
  color: white;
  border-radius: 50%;
  border: 4px solid #f4f7fc;
}

.info-list .info-row[b-4sng551fla] {
  transition: background-color 0.2s ease;
}

.info-list .info-row:hover[b-4sng551fla] {
  background-color: #f8f9fc;
  border-radius: 8px;
}

.info-list .info-row:last-child[b-4sng551fla] {
  border-bottom: none !important;
}

/* Bootstrap background subtles (if missing in your current version) */
.bg-success-subtle[b-4sng551fla] {
  background-color: #d1e7dd !important;
}
.bg-danger-subtle[b-4sng551fla] {
  background-color: #f8d7da !important;
}
/* _content/Admin/Components/Features/ResetPassword/ResetPassword.razor.rz.scp.css */
/* ResetPassword.razor.css */

.login-container[b-wa54nd2vgb] {
    display: flex;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b214d;
    overflow: hidden;
}

.left-pane[b-wa54nd2vgb] {
    flex: 5;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f2fe 100%);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.logo-container[b-wa54nd2vgb] {
    position: absolute;
    top: 3rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo[b-wa54nd2vgb] {
    height: 100px;
    object-fit: contain;
}

.welcome-text[b-wa54nd2vgb] {
    margin-top: 5rem;
}

.welcome-text h2[b-wa54nd2vgb] {
    color: #0b214d;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.welcome-text h1[b-wa54nd2vgb] {
    color: #ff5a00;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.right-pane[b-wa54nd2vgb] {
    flex: 5;
    background-color: #0b214d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.login-card[b-wa54nd2vgb] {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-title[b-wa54nd2vgb] {
    color: #0b214d;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

/* Reset Password Specific Headers */
.forgot-pwd-header h4[b-wa54nd2vgb] {
    color: #0b214d;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.forgot-pwd-header p[b-wa54nd2vgb] {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Alerts */
.alert-danger-custom[b-wa54nd2vgb] {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #f5c6cb;
    text-align: center;
}

.alert-success-custom[b-wa54nd2vgb] {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #c3e6cb;
    text-align: center;
}

/* Forms */
.form-group[b-wa54nd2vgb] {
    margin-bottom: 1.2rem;
}

[b-wa54nd2vgb] .validation-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
    margin-left: 2px;
}

/* Buttons matching Login styles */
.action-buttons[b-wa54nd2vgb] {
    margin-top: 2rem;
}

.btn-submit[b-wa54nd2vgb] {
    width: 100%;
    background-color: #0b214d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.85rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit:hover:not(:disabled)[b-wa54nd2vgb] {
    background-color: #081736;
}

.btn-submit:disabled[b-wa54nd2vgb] {
    background-color: #a0b3cc;
    cursor: not-allowed;
}

.btn-link[b-wa54nd2vgb] {
    color: #ff5a00;
    text-decoration: none;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0;
}

.btn-link:hover[b-wa54nd2vgb] {
    text-decoration: underline;
    color: #e04e00;
}

/* Responsive identical to Login */
@media (max-width: 992px) {
    .login-container[b-wa54nd2vgb] {
        flex-direction: column;
    }

    .left-pane[b-wa54nd2vgb] {
        border-radius: 0;
        border-bottom-left-radius: 30% 20%;
        border-bottom-right-radius: 30% 20%;
        padding: 3rem 2rem;
        text-align: center;
        flex: none;
    }

    .logo-container[b-wa54nd2vgb] {
        position: relative;
        top: 0;
        left: 0;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .welcome-text[b-wa54nd2vgb] {
        margin-top: 0;
    }

    .welcome-text h1[b-wa54nd2vgb] {
        font-size: 2.2rem;
    }

    .right-pane[b-wa54nd2vgb] {
        padding: 2rem;
        align-items: flex-start;
    }
}
/* _content/Admin/Components/Layout/AuthLayout.razor.rz.scp.css */
body[b-8lbhtfy87x], html[b-8lbhtfy87x] {
        margin: 0;
        padding: 0;
        height: 100%;
        background-color: #0b214d; 
    }
    
    .auth-layout[b-8lbhtfy87x] {
        min-height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
/* _content/Admin/Components/Layout/HeaderNav.razor.rz.scp.css */
.header-actions[b-t8g550qgrm] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dropdown-item:hover[b-t8g550qgrm] {
    background-color: #f4f7fc;
    color: #0d47a1;
}

.dropdown-toggle[b-t8g550qgrm]::after {
    margin-left: 0.5em;
    vertical-align: middle;
}
/* _content/Admin/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-fnszu11yml] {
    display: flex;
    flex-direction: row;
    height: 100vh; 
    width: 100vw;
    background-color: #f4f7fc; 
}

.sidebar[b-fnszu11yml] {
    width: 110px; 
    flex-shrink: 0;
    z-index: 999 !important;
    position: relative; 
}

main[b-fnszu11yml] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; 
}

.top-row[b-fnszu11yml] {
    height: 80px; 
    flex-shrink: 0;
    background-color: #ffffff; 
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02); 
    border-bottom: 1px solid #f0f0f0;
    z-index: 999; 
}

.header-actions[b-fnszu11yml] {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.content[b-fnszu11yml] {
    padding: 30px 40px;
    flex-grow: 1;
    overflow-y: auto; 
    min-height: 0; 
    height: 0; 
}

/* Custom Hover Effects for Bootstrap Items */
.dropdown-item:hover[b-fnszu11yml] {
    background-color: #f4f7fc;
    color: #0d47a1;
}

.dropdown-toggle[b-fnszu11yml]::after {
    margin-left: 0.5em;
    vertical-align: middle;
}
/* _content/Admin/Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-wrapper[b-w7x6jp4gc4] {
    background-color: #ffffff;
    width: 110px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e2e8f0;
    position: fixed;
    z-index: 10600 !important;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.02);
}

.sidebar-header[b-w7x6jp4gc4] {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f1f5f9;
    padding: 15px;
    flex-shrink: 0;
}

.sidebar-logo[b-w7x6jp4gc4] {
    max-width: 65px;
    height: auto;
}


.nav-scrollable[b-w7x6jp4gc4]::-webkit-scrollbar {
    width: 0px; 
    transition: width 0.3s ease;
}

.nav-scrollable[b-w7x6jp4gc4]::-webkit-scrollbar-track {
    background: transparent; 
}

.nav-scrollable[b-w7x6jp4gc4]::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 10px;
}

.nav-scrollable:hover[b-w7x6jp4gc4]::-webkit-scrollbar {
    width: 6px; 
}

.nav-scrollable:hover[b-w7x6jp4gc4] {
    scrollbar-color: #cbd5e1 transparent;
}
.custom-nav[b-w7x6jp4gc4] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.menu-item-container[b-w7x6jp4gc4] {
    position: relative; 
    width: 100%;
    display: flex;
    justify-content: center;
}

[b-w7x6jp4gc4] .menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b; 
    padding: 14px 6px;
    width: 90px; 
    border-radius: 12px; 
    transition: all 0.25s ease;
    cursor: pointer;
}

.menu-icon-wrapper[b-w7x6jp4gc4] {
    /* margin-bottom: 8px; */
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon-wrapper i[b-w7x6jp4gc4],
.menu-icon-wrapper svg[b-w7x6jp4gc4] {
    font-size: 22px;
    width: 22px;
    height: 22px;
    color: #94a3b8;
    transition: color 0.25s ease;
    fill: currentColor;
}

.menu-text[b-w7x6jp4gc4] {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.menu-link:hover[b-w7x6jp4gc4] {
    background-color: #f8fafc;
    color: #334155;
}

.menu-link:hover .menu-icon-wrapper i[b-w7x6jp4gc4],
.menu-link:hover .menu-icon-wrapper svg[b-w7x6jp4gc4] {
    color: #3b82f6; 
}

[b-w7x6jp4gc4] .active-menu {
    background-color: #eff6ff; 
    color: #1d4ed8; 
}

[b-w7x6jp4gc4] .active-menu .menu-icon-wrapper i,
[b-w7x6jp4gc4] .active-menu .menu-icon-wrapper svg {
    color: #2563eb;
}

.menu-item-container[b-w7x6jp4gc4]::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 20px; 
    z-index: 10600;
}


@keyframes flyoutFade-b-w7x6jp4gc4 {
    from { opacity: 0; transform: translateX(-10px) scale(0.98); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.submenu-header[b-w7x6jp4gc4] {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 12px;
    padding-left: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.submenu-list[b-w7x6jp4gc4] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

[b-w7x6jp4gc4] .submenu-link {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: #475569;
    text-decoration: none;
    font-size: 13px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.submenu-dot[b-w7x6jp4gc4] {
    /* width: 6px;
    height: 6px; */
    /* background-color: #cbd5e1; */
    /* border-radius: 50%; */
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* .submenu-text {
    font-weight: 500;
} */

.submenu-link:hover[b-w7x6jp4gc4] {
    background-color: #f1f5f9;
    color: #0f172a;
}

.submenu-link:hover .submenu-dot[b-w7x6jp4gc4] {
    /* background-color: #3b82f6; */
    color: #1d4ed8;
    /* transform: scale(1.3); */
}

[b-w7x6jp4gc4] .submenu-link.active {
    /* background-color: #eff6ff; */
    color: #1d4ed8;
}

/* ::deep .submenu-link.active .submenu-dot {
    background-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
} */

.loading-text[b-w7x6jp4gc4] {
    text-align: center;
    padding: 20px 0;
    color: #94a3b8;
}

.submenu-arrow[b-w7x6jp4gc4] {
    font-size: 10px;
    margin-top: 5px;
    color: #94a3b8;
    transition: transform 0.3s ease;
}
.active-menu .submenu-arrow[b-w7x6jp4gc4] {
    color: #1d4ed8;
}
.rotate-arrow[b-w7x6jp4gc4] {
    transform: rotate(90deg);
}

.nav-scrollable[b-w7x6jp4gc4] { 
    flex-grow: 1;
    overflow-y: auto; 
    overflow-x: hidden; 
    margin-top: 15px;
    padding-bottom: 20px; 
}

.submenu-container[b-w7x6jp4gc4] {
    display: none; 
    position: fixed !important; 
    background-color: #ffffff;
    min-width: 240px; 
    border-radius: 0 12px 12px 0; 
    border: 1px solid #e2e8f0;
    box-shadow: 10px 0 25px rgba(0, 0, 0, 0.1); 
    padding: 16px 20px;
    z-index: 99999 !important; 
    max-height: 85vh; 
    overflow-y: auto; 
    margin: 0 !important; 
}

.submenu-container.show[b-w7x6jp4gc4] {
    display: block;
    animation: slideIn-b-w7x6jp4gc4 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn-b-w7x6jp4gc4 {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.submenu-container[b-w7x6jp4gc4]::-webkit-scrollbar { width: 6px; }
.submenu-container[b-w7x6jp4gc4]::-webkit-scrollbar-track { background: transparent; }
.submenu-container[b-w7x6jp4gc4]::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.submenu-container[b-w7x6jp4gc4]::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.submenu-container[b-w7x6jp4gc4]::before {
    display: none; 
}
/* _content/Admin/Components/Reusable/ActionMenu/MBAActionMenu.razor.rz.scp.css */
.custom-backdrop[b-x6ubt8egvp] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  background: transparent;
  cursor: default;
}

.custom-dropdown-menu[b-x6ubt8egvp] {
  position: fixed;
  z-index: 9999;
  background-color: white;
  border-radius: 10px;
  min-width: 140px;
  padding: 8px;
  margin: 0;
  list-style: none;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-dropdown-item[b-x6ubt8egvp] {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  justify-content: start;
}

.custom-dropdown-item:hover[b-x6ubt8egvp] {
  background-color: #f8f9fa;
}
/* _content/Admin/Components/Reusable/Button/MBAButton.razor.rz.scp.css */
.ace-custom-btn[b-ebggmnw3u7] {
    background-color: #003366;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.ace-custom-btn:hover[b-ebggmnw3u7] {
    background-color: #002244;
}

.ace-custom-btn:focus[b-ebggmnw3u7] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.3);
}

.ace-custom-btn:disabled[b-ebggmnw3u7] {
    background-color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}
/* _content/Admin/Components/Reusable/DataGrid/GridColumn.razor.rz.scp.css */
.sortable-column[b-tijf842ob4] {
    cursor: pointer;
    user-select: none;
}
.sortable-column:hover[b-tijf842ob4] {
    background-color: rgba(255, 255, 255, 0.1);
}
.sort-icons[b-tijf842ob4] {
    display: inline-flex;
    flex-direction: column;
    color: #fff;
}
/* _content/Admin/Components/Reusable/DataGrid/MBADataGrid.razor.rz.scp.css */
.custom-datagrid-container[b-e0ar6ff1ro] {
    width: 100%;
    max-width: 100%; 
    /* overflow: hidden;  */
    overflow: visible; 
    background-color: transparent;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.toolbar[b-e0ar6ff1ro] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 5px; 
    flex-wrap: wrap; 
    gap: 15px;
}

.page-title[b-e0ar6ff1ro] {
    color: #003366;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.highlight[b-e0ar6ff1ro] { color: #E11D48; }

.actions[b-e0ar6ff1ro] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-box[b-e0ar6ff1ro] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon[b-e0ar6ff1ro] {
    position: absolute;
    left: 12px;
    color: #94A3B8;
    font-style: normal;
}

.search-box input[b-e0ar6ff1ro] {
    padding: 8px 16px 8px 35px;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    outline: none;
    width: 250px;
    color: #333;
}

.table-responsive[b-e0ar6ff1ro] {
    width: 100%;
    max-width: 100%; 
    /* overflow-x: auto; */
    overflow: auto; 
    -webkit-overflow-scrolling: touch;
    background-color: white;
    border-radius: 8px 8px 0 0;
    border: 1px solid #E2E8F0;
    border-bottom: none;
}

.custom-table[b-e0ar6ff1ro] {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap; 
}

.custom-table thead[b-e0ar6ff1ro] {
    background-color: #003366;
    color: white;
}

[b-e0ar6ff1ro] .custom-table th {
    padding: 16px 20px !important;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    border-right: 1px solid rgba(255,255,255,0.1); 
    white-space: nowrap !important;
}

[b-e0ar6ff1ro] .custom-table td {
    padding: 12px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #E2E8F0;
    color: #475569;
    white-space: nowrap !important; 
}

.pagination-container[b-e0ar6ff1ro] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: white;
    border: 1px solid #E2E8F0;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.page-info[b-e0ar6ff1ro] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748B;
    font-size: 14px;
}

.page-size-select[b-e0ar6ff1ro] {
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
    outline: none;
    color: #333;
}

.pagination-controls[b-e0ar6ff1ro] {
    display: flex;
    gap: 4px;
}

.pagination-controls button[b-e0ar6ff1ro] {
    padding: 6px 12px;
    border: 1px solid #E2E8F0;
    background-color: white;
    cursor: pointer;
    border-radius: 6px;
    color: #64748B;
    min-width: 32px;
    transition: background-color 0.2s;
}

.pagination-controls button:hover:not(:disabled)[b-e0ar6ff1ro] { background-color: #F8F9FA; }
.pagination-controls button:disabled[b-e0ar6ff1ro] { opacity: 0.5; cursor: not-allowed; }
.pagination-controls button.active[b-e0ar6ff1ro] {
    background-color: #EFF6FF;
    color: #2563EB;
    border-color: #BFDBFE;
    font-weight: 600;
}

@media (max-width: 768px) {
    .table-responsive[b-e0ar6ff1ro] {
        border: none;
        background-color: transparent;
    }
    
    .custom-table[b-e0ar6ff1ro], 
    .custom-table tbody[b-e0ar6ff1ro], 
    .custom-table tr[b-e0ar6ff1ro], 
    [b-e0ar6ff1ro] .custom-table td {
        display: block;
        width: 100%;
    }
    
    .custom-table thead[b-e0ar6ff1ro] {
        display: none; 
    }
    
    .custom-table tr[b-e0ar6ff1ro] {
        background-color: white;
        margin-bottom: 15px;
        border-radius: 8px;
        border: 1px solid #E2E8F0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        padding: 5px 0;
    }
    
    [b-e0ar6ff1ro] .custom-table td {
        text-align: right !important; 
        padding: 10px 15px 10px 45% !important; 
        position: relative;
        border-bottom: 1px solid #F1F5F9;
        white-space: normal !important; 
        min-height: 42px; 
    }
    
    [b-e0ar6ff1ro] .custom-table td:last-child {
        border-bottom: none;
    }
    
    [b-e0ar6ff1ro] .custom-table td:first-child input[type="checkbox"] {
        float: left;
        margin-top: 2px;
    }
    
    [b-e0ar6ff1ro] .custom-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 40%;
        padding-right: 10px;
        text-align: left;
        font-weight: 600;
        color: #64748B;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .toolbar[b-e0ar6ff1ro] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .actions[b-e0ar6ff1ro] {
        flex-direction: column;
        width: 100%;
    }
    
    .search-box[b-e0ar6ff1ro], .search-box input[b-e0ar6ff1ro] {
        width: 100%;
    }
    
    .pagination-container[b-e0ar6ff1ro] {
        flex-direction: column;
        gap: 15px;
        border-radius: 8px;
        border-top: 1px solid #E2E8F0;
        margin-top: 10px;
    }
}

/* _content/Admin/Components/Reusable/Modal/MBAModal.razor.rz.scp.css */
.ace-modal-overlay[b-awdag4hegf] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999 !important;
  backdrop-filter: blur(2px);
}

.ace-modal-dialog[b-awdag4hegf] {
  background-color: #ffffff;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  animation: slideDown-b-awdag4hegf 0.3s ease-out;
}

.ace-modal-header[b-awdag4hegf] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.ace-modal-title[b-awdag4hegf] {
  margin: 0;
  color: #003366;
  font-size: 1.15rem;
  font-weight: 600;
}

.ace-btn-close[b-awdag4hegf] {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
}

.ace-btn-close:hover[b-awdag4hegf] {
  color: #ef4444;
}

.ace-modal-body[b-awdag4hegf] {
  padding: 24px;
  max-height: 70vh;
  overflow-y: auto;
}

.ace-modal-footer[b-awdag4hegf] {
  padding: 16px 24px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background-color: #f8fafc;
  border-radius: 0 0 8px 8px;
}

@keyframes slideDown-b-awdag4hegf {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
