/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Playfair Display'; /* 定义字体名称 */
    src: url('../fonts/Playfair-display.ttf'); /* 指定字体文件路径 */
}

@font-face {
    font-family: 'Source Serif Pro';
    src: url('../fonts/SourceSerifPro-SemiBold.ttf');
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.ttf');
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('../fonts/RobotoSlab-Regular.ttf');
}

body {
    font-family: "Inter", "Roboto Slab", "Open Sans Condensed", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(180deg, #e4defb 0% 10%, #ffffff 90%) no-repeat;
    min-width:1200px;
}
ul{
    list-style:none
}
 li{
    list-style: none
}
/* 顶部导航栏 */
header {
    background: linear-gradient(90deg, #20439A 0%, #261665 100%);
    color: white;
    padding: 10px 20px;
    display: flex;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo svg {
    width: 60px;
    height: 60px;
}

.header-text h1 {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
    color: white;
}

.header-text p {
    font-size: 16px;
    margin: 0;
    color: white;
}

/* 面包屑导航 */
.breadcrumb {
    background-color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

    .breadcrumb a {
        color: #213c91;
        text-decoration: none;
        font-weight: bold;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

    .breadcrumb span {
        color: #666;
        margin: 0 5px;
    }
/* 主要内容区域 */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    min-height: calc(100vh - 140px);
    padding: 20px;
    text-align: center;
    padding-top: 100px;
}

.title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    margin-top: 50px
}
/* 登录表单 */
.login-form {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 512px;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 500;
        color: #333;
        font-size: 16px;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus {
            outline: none;
            border-color: #213c91;
        }

.captcha {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .captcha input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

    .captcha label {
        cursor: pointer;
        font-size: 14px;
    }

.btn {
    width: 40%;
    padding: 18px 12px;
    background-color: #364f72;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

    .btn:hover {
        background-color: #003a75;
    }

    /* 加载动画样式 */
    .btn.loading {
        position: relative;
        padding-left: 30px;
    }

        .btn.loading::before {
            content: "";
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

.signin-button .loading-icon {
    display: inline-block;
    margin-left: 8px;
    animation: spin 1s linear infinite;
}

.mfa-container {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 700px;
    max-width: 95%;
    box-sizing: border-box;
}

.mfa-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.mfa-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.mfa-description {
    color: #000000;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}
.mfa-descriptionBox {
    font-size: 14px;
    line-height: 1.5;
    width: 640px;
    padding: 12px;
    margin 0 auto;
    opacity: 1;
    border-radius: 4px;
    border-width: 1px;
    background: #FEF2B4;
    color: #A55502;
    border: 1px solid #A55502;
    margin-bottom: 30px;
}
/* 按钮样式 */
.btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

    .btn-secondary:hover {
        background-color: #e0e0e0;
    }

.btn-primary {
    background-color: #364f72;
    color: white;
    text-align: center;
    gap: 8px;
}

    .btn-primary:hover {
        background-color: #003a75;
    }

.page-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
}

.page-subtitle {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
}
/* 密码设置容器 */
.password-container {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 570px;
    height: 450px;
    max-width: 95%;
    box-sizing: border-box;
    text-align: left;
}

/* 密码要求 */
.password-requirements {
    margin-bottom: 20px;
}

.requirements-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
    color: #000000;
}

.requirements-list {
    list-style: none;
    padding-left: 0;
}

    .requirements-list li {
        font-size: 14px;
        color: #000000;
    }

.passwordBtn {
    width: 120px;
    float: right;
    margin-top: -20px;
}

.success-message {
    color: #28a745;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 600;
    display: block;
    width: 570px;
}

.signin-container {
    background-color: white;
    width: 570px;
    min-height: 300px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.captcha-group {
    margin-bottom: 20px;
    text-align: left;
}

    .captcha-group label {
        display: flex;
        align-items: center;
        color: #333;
        font-weight: normal;
        cursor: pointer;
        font-size: 16px;
    }

    .captcha-group input[type="checkbox"] {
        margin-right: 8px;
        width: auto;
    }

.action-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.forgot-password {
    margin: 0;
}

    .forgot-password a {
        color: #007bff;
        text-decoration: none;
        font-size: 16px;
    }

.signin-button {
    background-color: #364f72;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

    .signin-button:hover {
        background-color: #003a75;
    }

    .signin-button span {
        margin-right: 8px;
        color: #ffffff
    }

/* 通知容器 */
.notice-container {
    background-color: white;
    width: 800px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin: 0 auto;
}

/* 通知标题 */
.notice-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 警告图标 */
.warning-icon {
    margin-right: 10px;
}

/* Accept按钮样式 */
.accept-button {
    background-color: #364f72;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

    .accept-button:hover {
        background-color: #003a75;
    }

    .accept-button span {
        font-size: 20px;
    }

.warning-icon {
    color: #7b68ee;
    font-size: 28px;
    font-weight: bold;
}

/* 通知内容 */
.notice-content {
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}
.notice-content p {
   margin-bottom: 20px;
   font-weight: normal;
   text-align: center;
}
.notice-content p a{
    text-decoration:underline
}
    /* 红色警告文本 */
    .red-warning {
        color: #dc3545;
        font-weight: 500;
    }

/* 接受按钮 */
.accept-button {
    background-color: #7b68ee;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

    .accept-button:hover {
        background-color: #6a5acd;
    }
/* 欢迎消息 */
.welcome-message {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* 仪表盘容器 */
.dashboard-container {
    background-color: white;
    width: 1140px;
    min-height: 400px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
    margin: 0 auto;
}

/* 仪表盘内容 */
.dashboard-content {
    font-size: 18px;
    color: #666;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 用户图标 */
.user-icon {
    font-size: 24px;
}

.notice-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.email-notice {
    background-color: #ffd6dc;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

    .email-notice h3 {
        color: #e74c3c;
        margin: 0 0 10px 0;
        font-size: 18px;
    }

    .email-notice p {
        color: #555;
        margin: 0;
        line-height: 1.5;
    }

.district-button {
    background-color: #182f7a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

    .district-button:hover {
        background-color: #003a75;
    }

.search-icon {
    width: 16px;
    height: 16px;
}
/* 主内容区域 */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px 20px;
    text-align: center;
}

.welcome-container {
    max-width: 1000px;
    width: 100%;
}

.portal-title {
    font-size: 4rem;
    font-weight: bold;
    color: #222650;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Playfair Display", "Arial", "sans-serif";
}

.subtitle {
    font-size: 20px;
    color: #222650;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

    .subtitle a {
        color: #222650;
        text-decoration: none;
        font-weight: bold;
        font-style: italic;
    }

.sign-in-as {
    font-size: 32px;
    color: #222650;
    margin-bottom: 30px;
    font-family: "Source Serif Pro", "sans-serif", "Arial";
    letter-spacing: -1px;
    font-weight: 100;
}

.role-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.role-button {
    background-color: #F3F3FF;
    box-shadow: 0px 7px 6.5px 4px #0000000A;
    padding: 36px 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 300px;
    height: 150px;
    text-align: center;
    position: relative;
}

    .role-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .role-button span {
        font-size: 40px;
        color: #222650;
        font-weight: 500;
        letter-spacing: -2px;
    }

    /* 按钮下划线 */
    .role-button.employee {
        border-bottom: 8px solid #5EA8DE;
    }

    .role-button.employer {
        border-bottom: 8px solid #7B4F9D;
    }

    .role-button.manager {
        border-bottom: 8px solid #8cbf34;
    }

/* 页脚 */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #767676;
    font-family: "Roboto Slab", "sans-serif", "Arial";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* 弹出框样式 */
.modal-trigger {
    background-color: #182f7a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin: 20px auto;
    display: block;
    transition: background-color 0.3s;
}

    .modal-trigger:hover {
        background-color: #003a75;
    }

/* 模态框容器 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

/* 模态框内容 */
.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalFade 0.3s;
    text-align: center;
}

    .modal-content h3 {
/*        color: #a41c14;*/
        margin: 0 0 10px 0;
        font-size: 18px;
    }
.successModal .modal-content h3 {
    color: #53aa4f;
   
}
.failModal .modal-content h3 {
    color: #a41c14;
}
@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: 6px;
    right: 18px;
    color: #888;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

    .close-btn:hover,
    .close-btn:focus {
        color: #333;
        text-decoration: none;
    }

/* 内容样式 */
.email-notice {
    
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    margin-top: 10px;
}

    .email-notice h3 {
      
        margin: 0 0 10px 0;
        font-size: 18px;
    }

    .email-notice p {
        
        margin: 0;
        line-height: 1.5;
    }
.failModal .email-notice {
    background-color: #ffe3e3;
}
    .failModal .email-notice h3 {
        color: #a41c14;
    }
    .failModal .email-notice p {
        color: #bb4141;
    }
.successModal .email-notice {
    background-color: #e4f9ea;
}
    .successModal .email-notice h3 {
        color: #2d7129;
    }

    .successModal .email-notice p {
        color: #4d9d51;
    }
.messageModal .email-notice {
    background-color: #e4eeff;
}

    .messageModal .email-notice h3 {
        color: #213c91;
    }

    .messageModal .email-notice p {
        color: #3f4351;
    }
.messageModal .modal-content h3 {
    color: #263f89
}

.district-button {
    background-color: #364f72;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

    .district-button:hover {
        background-color: #003a75;
    }

.search-icon {
    width: 16px;
    height: 16px;
}
.button {
    background: none repeat scroll 0 0 #182f7a;
    border: 1px none;
    color: #FFFFFF;
    min-width: 100px;
    display: inline-block;
    padding: 1px;
    text-align: center;
    cursor: pointer
}
/* 响应式设计 */
@media (max-width: 768px) {
    .portal-title {
        font-size: 2rem;
    }

    .role-buttons {
        flex-direction: column;
        align-items: center;
    }

    .role-button {
        width: 100%;
        max-width: 300px;
    }
}
/* 响应式设计 */
@media (max-width: 900px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .welcome-message {
        font-size: 24px;
    }

    .dashboard-container {
        padding: 40px 20px;
    }

    .notice-container {
        width: 95%;
        max-width: 800px;
        padding: 30px 20px;
    }

    .notice-title {
        font-size: 20px;
    }

    .notice-content {
        font-size: 15px;
    }
}
/* 响应式设计 */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .title {
        font-size: 24px;
    }

    .login-form {
        padding: 20px;
    }

    .mfa-container {
        padding: 30px 20px;
    }

    .btn-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .password-container {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .signin-container {
        width: 95%;
        max-width: 570px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .login-form {
        padding: 15px;
    }
}

.PageTitle {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    text-align:center
}

.PageSubTitle {
    font-size: 14px;
   
    color: rgba(0, 0, 0, 0.9);
    
 
    float:right

}

.login-table {
    width: 100%;
}

    .login-table em {
        font-style: normal
    }

    .login-table td {
        font-size: 16px;
        height: 30px;
        line-height: 30px;
        color: #1E1E1E
    }

        .login-table td input, .login-table td select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

            .login-table td input:focus {
                outline: none;
                border-color: #213c91;
            }

            .login-table td select:focus {
                outline: none;
                border-color: #213c91;
            }

    .login-table .btn {
        width: 40%;
        height: 40px;
        background-color: #364f72;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 20px;
    }
    table td{
        padding:2px 5px
    }
.PageTitleSmall {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.9);
    margin: 30px auto;
    font-size:30px
}
.searchBox {
    margin: 10px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 1140px;
    min-width: 1090px;
}
    .searchBox input, .searchBox select {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }
        .searchBox input:focus, .searchBox select:focus {
            outline: none;
            border-color: #213c91;
        }
.searchBox span{
    font-size:16px;
    margin:0 16px
}
.searchBox .btn{

}
.listTable{
    width:100%

}
    .listTable .trhead {
        background: #213c91;
        color:#ffffff;
        line-height:24px;

    }
    .listTable tr:nth-child(even) {
        background-color: #f4f4f4
    }
    .listTable .trhead td {
        color: #ffffff;
        line-height: 24px;
    }
    .listTable td {
        padding: 5px;
        border-bottom: 1px solid #efefef
    }
DIV.pager {
    text-align: right;
 
    padding: .5em 0 0 0;
     margin-top: 1em; 
}
    DIV.pager A {
        font-size: 1.1em;
        color: #666;
        text-decoration: none;
        padding:0.5rem 1rem;
        margin:0 2px;
        border-radius:5px
    }
        DIV.pager A:hover {
            background-color: Silver;
        }
        DIV.pager A.selected {
            background-color: #213c91;
            color: White;
        }
.button {
    background: none repeat scroll 0 0 #182f7a;
    border: 1px none;
    color: #FFFFFF;
    min-width: 100px;
    display: inline-block;
    padding: 1px;
    text-align: center;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 5px;
}
.inputClass {
    width: 100%!important;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    height: 36px !important;
    line-height: 36px !important;
    margin-left: 10px;
}
    .inputClass:focus {
        outline: none;
        border-color: #213c91;
    }
.inputClassTextarea {
    width: 100% !important;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
 
    margin-left: 10px;
}

    .inputClassTextarea:focus {
        outline: none;
        border-color: #213c91;
    }
.textcontainner select {
    width: 100% !important;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    height: 50px !important;
    line-height: 50px !important;
    margin-left: 10px;
}

.textcontainner select:focus {
        outline: none;
        border-color: #213c91;
    }
#divCCTo .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #dacfff !important;
    background: #8974ff !important;
    font-weight: bold;
    color: #ffffff !important;
}
 #divCCTo .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
        border: 1px solid #dacfff !important;
        background: #8974ff !important;
        font-weight: bold;
        color: #ffffff !important;
    }
#divCCTo .ui-widget-content {
    border: 1px solid #dacfff;
    background: #f6f4ff;
    color: #383838;
}
#divCCTo .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: Inter;
    font-size: 1em;
    margin-right: 5px;
}
.login-notice {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin-top: 10px;
    text-align: center;
}
.login-content p {
    margin-bottom: 20px;
    font-weight: normal;
    text-align: center;
}
.login-notice p a {
        text-decoration: underline
    }
.pageMenuList li{
    line-height:30px;
    line-height:30px;
}
.pageMenuList li a{
    height:30px;
    line-height:30px;
    margin:0 auto
}
.portal-text {
    border: 2px solid #3485FF;
    padding: 10px 10px;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: rgba(63,57,84,0.5) 0px 0px 10px 1px;
    cursor:pointer;
}
/* Modal Overlay */
.welcomeModal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

    .welcomeModal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Modal Container */
.welcomeModal {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    width: 600px;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.welcomeModal-overlay.active .modal {
    transform: scale(1);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .close-btn:hover {
        background-color: #f8f9fa;
        color: #212529;
    }

/* Title */
.welcomeModal-title {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
    padding-right: 40px;
    line-height: 1.3;
}

/* Subheader */
.welcomeModal-subheader {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 24px;
    
}

/* Feature List */
.feature-list {
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

    .feature:last-child {
        margin-bottom: 0;
    }

.checkmark {
    color: #198754;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 2px;
}

.feature-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

/* Old Version Section */
.old-version-section {
    border-left: 4px solid #2483ea;
    padding-left: 16px;
    margin-bottom: 16px;
    background-color: #f8f9fa;
    padding: 16px;
    border-radius: 0 4px 4px 0;
}

.old-version-text {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 8px;
}

.old-login-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
    text-decoration:underline;
}

    .old-login-link:hover {
        color: #0b5ed7;
        text-decoration: underline;
    }

    .old-login-link i {
        margin-left: 4px;
        transition: transform 0.2s ease;
    }

    .old-login-link:hover i {
        transform: translateX(4px);
    }

/* Note */
.note {
    font-size: 14px;
    color: #6c757d;
  
    margin-bottom: 24px;
}

/* Button */
.got-it-btn {
    background-color: #0a58ca;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

    .got-it-btn:hover {
        background-color: #0950b6;
    }

    .got-it-btn:active {
        background-color: #0848a3;
    }

/* Demo Button */
.demo-btn {
    padding: 12px 24px;
    background-color: #0a58ca;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .demo-btn:hover {
        background-color: #0950b6;
    }

/* Responsive Design */
@media (max-width: 640px) {
    .welcomeModal {
        padding: 24px;
    }

    .welcomeModal-title {
        font-size: 20px;
    }

    .feature {
        flex-direction: column;
    }

    .checkmark {
        margin-bottom: 8px;
    }
}
.ui-widget-header {
    border: 1px solid #ffffff !important;
    background: #ffffff !important;
}
.ui-widget.ui-widget-content {
    border: 0 !important;
    box-shadow: #acacac 0px -1px 19px 4px !important;
}
.ui-dialog .ui-dialog-buttonpane button {
    margin: 2px 10px 1px 1px !important;
    width: 100px !important;
    font-size: 14px !important;
    cursor: pointer;
    padding: 5px 10px;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    background: #22377b !important;
}
.ui-widget-content {
    background: #ffffff !important
}
.ui-widget-content{
    border:0!important
}
    .ui-datepicker .ui-state-default, .ui-widget-content .ui-state-default {
        border: 1px solid #ffffff !important;
        background: #ffffff !important;
        font-weight: bold;
        color: #2f1e1e !important;
    }
.ui-datepicker .ui-state-highlight {
    background: #efe4fd !important;
}
.ui-dialog-titlebar-close {
    background: #ffffff !important;
    border: 0 !important;
}