/* Profile setting Page */
.cms_profile_main .cms_profile_inner {
    padding: 40px;
    min-height: auto;
    max-width: 700px;
    position: relative;
    margin-bottom: 50px;
}

.cms_profile_form .cms_profile_form_button,
.emoloyee_main .emoloyee_form_button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding-top: 15px;
}

.emoloyee_main .emoloyee_form_button {
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
}


.emoloyee_form_button>a {
    width: 150px;
    min-height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cms_profile_form .cms_profile_form_button button,
.manage_user_main .manage_user_form_button button,
.emoloyee_main .emoloyee_form_button button {
    background: linear-gradient(180deg, #005288 0%, rgba(0, 82, 136, 0.75) 100%);
    border-color: var(--theme-color);
    padding: 10px;
    font-weight: bold;
}

.page_main.emoloyee_main .btn-primary {
    background: linear-gradient(180deg, #005288 0%, rgba(0, 82, 136, 0.75) 100%);
    border-color: var(--theme-color);
    font-weight: bold;
}

.cms_profile_form .form-group label.form-label {
    font-weight: bold;
}

.cms_profile_form .form-group .form-control {
    color: var(--light-blue);
}

.password_change_section p.password_info {
    font-size: 14px;
    line-height: 18px;
    color: var(--text-color);
    margin: 0;
}


/* Manage Users Page */
.manage_user_main .manage_user_inner {
    padding: 20px;
    min-height: 500px;
    max-width: 900px;
    position: relative;
    margin-bottom: 50px;
}

.manage_user_main .manage_user_inner table {
    width: 100%;
}

.manage_user_main .manage_user_inner table th {
    padding: 0px 0 10px;
    border-bottom: 1px solid #B5B5B5;
    font-weight: 400;
    color: var(--text-color);
    font-size: 14px;
    line-height: 19px;
}

.manage_user_main .manage_user_inner table td {
    padding: 10px 0;
    font-weight: 700;
    color: var(--text-color);
}

.manage_user_main .manage_user_inner table td img {
    max-width: 18px;
}

.manage_user_main .manage_user_form_button {
    width: 100%;
    margin: 20px auto;
    position: relative;
}

.manage_user_main .manage_user_form_button a {
    background: linear-gradient(180deg, #005288 0%, rgba(0, 82, 136, 0.75) 100%);
    border-color: var(--theme-color);
    padding: 10px;
    font-weight: bold;
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.employee_add {
    display: flex;
    column-gap: 10px;
    align-items: baseline;
    flex-direction: row-reverse;
}



@media only screen and (max-width: 767px) {
    .manage_user_main .manage_user_inner {
        overflow: auto;
    }

    .manage_user_main .manage_user_inner table {
        table-layout: fixed;
        min-width: 800px;
    }
    .manage_user_main .manage_user_inner table th.name {
        width: 180px;
    }
    .manage_user_main .manage_user_inner table th.role {
        width: 100px;
    }
    .manage_user_main .manage_user_inner table th.email {
        width: 300px;
    }
    .manage_user_main .manage_user_inner table th.teliphone {
        width: 150px;
    }
    .manage_user_main .manage_user_inner table th.text-center {
        width: 70px;
    }
}

/* Add Employees Page */

.emoloyee_main .emoloyee_inner {
    padding: 40px;
    min-height: auto;
    max-width: 900px;
    position: relative;
    margin-bottom: 50px;
}

.emoloyee_main .form-group label.form-label {
    font-weight: bold;
}

.emoloyee_main .form-group .form-control {
    color: var(--light-blue);
}

.emoloyee_form .employee_emails {
    border: 1px solid #ced4da;
    padding: 10px;
    min-height: 400px;
    color: var(--light-blue);
    border-radius: 6px;
}

.emoloyee_form .employee_emails ul {
    list-style: none;
    padding: 0;
}

@media only screen and (max-width: 767px) {
    .emoloyee_main .emoloyee_inner {
        padding: 20px;
    }
    .cms_employee .row.form-row.employee_table_lable {
        display: none;
    }
}
