/*
Theme Name: Deow
Theme URI: https://techwise-labs.com/
Author: TechWise Team
Author URI: https://techwise-dev.com/
Description: Custom WordPress theme developed for Deow website. Modern, responsive design with optimized performance and user experience.
Version: 1.0.0
Requires at least: WordPress 5.9
Tested up to: WordPress 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deow
Tags: custom-background, custom-logo, custom-menu, featured-images, full-site-editing, block-styles, wide-blocks, template-editing, translation-ready, rtl-language-support, sticky-post, threaded-comments, accessibility-ready
*/




:root {
    --body-bg-color: #F4F1ED;
    --welcome-btn-color: #002D1D1A;
    --heading-color: #002D1D;
    --text-color: #002D1DB2;
    --border-color: #D7D7D7;
    --span-text-color: #627B70;
    --black-color: black;
    --green-color: #025529;
    --white-color: rgb(255, 255, 255);
    --green-gradient: linear-gradient(to right, #025529, #2c8e37);
    --green-hover-color: #008F4D;
    --yellow-bg-color: rgb(229, 243, 43);
    --yellow-color: rgb(172, 184, 6);
    --approve-color-text: #13f125;
    --review-bg-color: #4e73df;
    --card-header-bg-color: rgba(0, 104, 55, 0.08);
    --grey-color: #858796;
    --sidebar-color: #002D1D;
    --sidebar-active-color: #004C31;
    --total-stats-heading-color: #002D1D57;
    --graph-stats-light-green-color: #B7E1B8;
    --graph-stats-dark-green-color: #1A864C;
}


body {
    background-color: var(--body-bg-color);
}


h1,
h2,
h3,
h4,
h5,
h6,
table thead th {
    font-family: 'Gotham Bold';
    color: var(--heading-color);
}

p,
a,
table tbody td {
    font-family: 'Gotham Light';
    color: var(--text-color);
}

sup,
sub {
    font-size: 100% !important;
    color: red !important;
    top: -3px !important
}

header {
    margin-top: 20px;
}


footer.footer-bar {
    background-color: #093526;
    padding: 15px 0;
    color: var(--white-color) !important;
    text-align: center;
    border-top: 1px solid #e3e6f0;
}

footer.footer-bar a {
    color: var(--white-color);
    text-decoration: none;
}

/*Landing Page Style Start*/
.landing-page {
    padding: 80px 0px 250px;
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: right bottom;
}

.landing-page .the-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-page .the-heading h3 {
    font-family: 'Gotham Medium';
    background-color: var(--welcome-btn-color);
    padding: 10px 20px;
    text-transform: capitalize;
    border: 1px solid var(--black-color);
    border-radius: 20px;
    color: var(--black-color);
    width: fit-content;
    font-size: 18px;
}

.landing-page .the-heading h1 {
    font-family: 'Gotham Bold Italic';
    font-size: 50px;
    margin: 30px 0px;
    line-height: 60px;
}


.landing-page .the-heading h1 span {
    color: var(--span-text-color);
}

.landing-page .login-box {
    display: flex;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, .15);
}

.landing-page .the-heading {
    margin-bottom: 40px;
}

.landing-page .login-box:hover {
    scale: 1.02;
    box-shadow: 0px 4px 12px 10px rgba(58, 59, 69, .15);
}

.landing-page .login-box .icon {
    margin-right: 20px;
}

.landing-page .login-box .icon img {
    width: 50px;
}

.landing-page .login-box h2 {
    font-family: 'Gotham Medium';
    font-size: 25px;
}

.landing-page .login-box .login-btn {
    margin-left: 20px;
}

.landing-page .login-box .login-btn a {
    padding: 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Gotham Medium';
}

.landing-page .login-box .login-btn a:hover {
    color: var(--white-color);
    background-color: var(--green-hover-color);
    border: 1px solid var(--green-hover-color);
}

/*Landing Page Style End*/


/* Member Dasboard Style Start */

.member-dashboard .sidebar .sidebar-brand {
    height: auto;
    padding: 20px 10px;
}

.sidebar-toggled .sidebar-brand img:first-of-type {
    display: none;
}

.sidebar-toggled .sidebar-brand img:last-of-type {
    display: block !important;
}

.member-dashboard .topbar {
    margin: 20px;
    border-radius: 20px;
}

.member-dashboard h1 {
    font-size: 25px;
    font-family: 'Gotham Medium';
    margin-bottom: 0px;
}


/* Login Page */
.login-page {
    padding: 80px 0px 250px;
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: right bottom;
}

.login-page .bg-img {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    height: 100%;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
}

.login-page .bg-img .padding {
    padding: 0px 50px;
}

.login-page .bg-img .padding a {
    padding: 10px 40px;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 20px;
    display: block;
    width: fit-content;
}

.login-page .bg-img .padding a:hover {
    color: var(--white-color);
    text-decoration: none;
}

.login-page h1 {
    font-size: 35px;
    color: var(--white-color);
    font-family: 'Gotham Bold Italic';
    margin: 20px 0px;
}

.login-page p {
    color: var(--white-color);
}

.login-page .the-content {
    padding-left: 30px;
}

.login-page .the-content img {
    width: 100%;
}

.login-page .member-form {
    margin-top: 60px;
}

.login-page .member-form h2 {
    font-size: 25px;
    margin-bottom: 20px;
    font-family: 'Gotham Medium';
}

.login-page .member-form h3 {
    font-size: 18px;
    color: var(--text-color);
    font-family: 'Gotham Medium';
}

.login-page .member-form label {
    color: var(--black-color);
    font-family: 'Gotham Medium';
}

.login-page .member-form .form-control {
    padding: 30px 10px;
    background-color: var(--welcome-btn-color);
}

.login-page .member-form a.login-btn {
    display: block;
    padding: 15px 10px;
    background-color: var(--green-hover-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    font-family: 'Gotham Medium';
    margin: 20px 0px;
    transition: all 0.3s ease;
}

.login-page .member-form a.login-btn:hover {
    text-decoration: unset;
    scale: 1.02;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, .15);
}

.login-page .the-content p {
    color: var(--black-color);
}

/* Admin Login Portal Page */
.admin-login {
    margin: 40px 0px;
    text-align: center;
}

.admin-login .admin-form {
    margin-top: 40px;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, .15);
}

.admin-login h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.admin-login p {
    font-size: 18px;
}

.admin-login .admin-form a.login-btn {
    display: block;
    padding: 15px 10px;
    background-color: var(--green-hover-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    font-family: 'Gotham Medium';
    margin: 20px 0px;
    transition: all 0.3s ease;
}

.admin-login .admin-form a.login-btn:hover {
    text-decoration: unset;
    scale: 1.02;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, .15);
}

.admin-login .admin-form .form-group {
    text-align: left;
}

.admin-login .admin-form select {
    padding: 14px 10px;
    background-color: var(--welcome-btn-color);
    color: var(--text-color);
    display: block;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.admin-login .admin-form .text-center a:hover {
    text-decoration: none;
    color: var(--text-color);
}


/* Member Register Page */
.member-register {
    padding: 80px 0px 250px;
    background-repeat: no-repeat;
    background-size: 150px;
    background-position: right bottom;
    text-align: center;
}

.member-register .member-register-form {
    margin-top: 40px;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, .15);
}

.member-register h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.member-register p {
    font-size: 16px;
}

.member-register p.error-msg {
    color: red;
    font-weight: 600;
    margin-top: 40px;
}

.member-register p.success-msg {
    color: #008F4D;
    font-weight: 600;
    margin-top: 40px;
}

.member-register .member-register-form .multi-step {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 40px 0px;
}

.member-register .member-register-form .multi-step img {
    width: 50px !important;
    margin-bottom: 20px;
}

.member-register .member-register-form .multi-step h2 {
    font-size: 16px;
    font-family: 'Gotham Medium';
}

.member-register .member-register-form label {
    color: var(--black-color);
    font-family: 'Gotham Medium';
}

.member-register .member-register-form .form-control {
    padding: 15px 10px;
    border-radius: 15px;
    background-color: var(--welcome-btn-color);
    margin-bottom: 20px;
    height: 100%;
    text-align: left;
}

.member-register .member-register-form #file-upload-button::file-selector-button {
    background-color: var(--welcome-btn-color);
    padding: 8px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    color: #333;
}

.member-register .member-register-form a.login-btn {
    display: block;
    padding: 15px 10px;
    background-color: var(--green-hover-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    font-family: 'Gotham Medium';
    margin: 20px 0px;
    transition: all 0.3s ease;
}

.member-register .member-register-form a.back-btn {
    display: block;
    padding: 15px 10px;
    color: var(--black-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    font-family: 'Gotham Medium';
    margin: 20px 0px;
    transition: all 0.3s ease;
}

.member-register .member-register-form a.back-btn:hover {
    text-decoration: unset;
    scale: 1.02;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, .15);
}

.member-register .member-register-form a.login-btn:hover {
    text-decoration: unset;
    scale: 1.02;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, .15);
}

.member-register .member-register-form .form-group {
    text-align: left;
}

.member-register .member-register-form .text-center a:hover {
    text-decoration: none;
    color: var(--text-color);
}

.member-register .member-register-form .field-border {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 20px;
}

.member-register .member-register-form select {
    padding: 14px 10px;
    background-color: var(--welcome-btn-color);
    color: var(--text-color);
    display: block;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.member-register .member-register-form select option {
    background-color: var(--white-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 30px;
}

.member-register .member-register-form select option::last-of-type {
    border-bottom: 0;
}

.member-register .member-register-form select option:hover {
    color: var(--white-color);
    background-color: var(--green-hover-color);
}

/* Terms and conditions Tooltip style */
.page-id-21 #termsModal .modal-body,
.page-id-198 #termsModal .modal-body {
    padding: 30px;
    text-align: left;
}

.page-id-21 #termsModal .modal-body h1,
.page-id-198 #termsModal .modal-body h1 {
    font-size: 1.5rem;
}

.page-id-21 #termsModal .modal-body h2,
.page-id-198 #termsModal .modal-body h2 {
    font-size: 1rem;
    margin-top: 2rem;
}


.modal .modal-footer button.btn-primary,
.modal .modal-footer button.btn-primary:focus,
.modal .modal-footer button.btn-primary:active,
.modal .modal-footer a.btn-primary,
.modal .modal-footer a.btn-primary:focus,
.modal .modal-footer a.btn-primary:active {
    background-color: var(--green-hover-color);
    border-color: var(--green-hover-color);
    box-shadow: none;
}




/* Member Dashboard Page */

.sidebar-toggled .member-sidebar .sidebar-profile {
    display: none;
}

.member-sidebar {
    background-color: var(--sidebar-color);
    width: 18rem !important;
}

.member-dashboard .member-sidebar .nav-item.active {
    background-color: var(--sidebar-active-color);
    border-radius: 10px 0px 0px 10px;
    margin-left: 10px;
}

.member-dashboard .total-stats {
    background:
        linear-gradient(var(--sidebar-active-color), var(--sidebar-active-color)) left / 3px 60px no-repeat,
        var(--white-color);
    background-position: left center;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-radius: 30px;
}

.member-dashboard .total-stats p {
    font-family: 'Gotham Medium';
    margin-bottom: 0px;
    color: var(--total-stats-heading-color);
}

.member-dashboard .total-stats .the-logo img {
    width: 75px;
}

.member-dashboard .graph-stats {
    padding: 40px;
    background-color: var(--white-color);
    border-radius: 20px;
    margin: 25px 0px;
}

.member-dashboard .graph-stats h2 {
    font-family: 'Gotham Medium';
    font-size: 25px;
}

.member-dashboard .graph-stats .light-green-color {
    background-color: var(--graph-stats-light-green-color);
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.member-dashboard .graph-stats .dark-green-color {
    background-color: var(--graph-stats-dark-green-color);
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.member-dashboard .graph-stats strong {
    font-family: 'Gotham Book';
    color: var(--black-color);
    font-size: 20px;
}

.member-dashboard .graph-stats .light-green-bg {
    background-color: var(--graph-stats-light-green-color);
}

.member-dashboard .graph-stats .dark-green-bg {
    background-color: var(--graph-stats-dark-green-color);
}

.member-dashboard .sidebar-profile {
    padding: 15px;
    border-radius: 20px;
    background-color: var(--sidebar-active-color);
    margin: auto 10px 10px;
}

.member-dashboard .sidebar-profile h4 {
    color: var(--white-color);
    margin-bottom: 0px;
}

.member-dashboard .sidebar-profile span {
    color: var(--white-color);
}

.member-dashboard .sidebar-profile img.img-profile {
    width: 30px;
}

.member-dashboard .sidebar-profile a {
    color: var(--white-color);
}

/*Add Supervisor*/

.member-dashboard .add-supervisor {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
}

.member-dashboard .add-supervisor h2 {
    font-family: 'Gotham Medium';
    font-size: 25px;
}

/* All Recruitment heading styles */
.member-dashboard .add-supervisor .recruitment-area h2,
.member-register .add-observer .recruitment-area h2 {
    font-family: 'Gotham Medium';
    font-size: 20px !important;
    margin-bottom: 10px !important;
}

.member-dashboard .add-supervisor .form-control {
    padding: 15px 10px;
    border-radius: 15px 0px 0px 15px;
    background-color: var(--welcome-btn-color);
    height: 100%;
    text-align: left;
    border-top: 1px solid var(--border-color);
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.member-dashboard .add-supervisor .form-control:focus {
    border-top: 1px solid var(--border-color);
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    box-shadow: none;
}

.member-dashboard .add-supervisor .input-group-append {
    margin-left: 0px;
}

.member-dashboard .add-supervisor label {
    color: black !important;
    font-family: 'Gotham Medium';
}

.member-dashboard .add-supervisor input[type="file"],
.member-dashboard .edit-supervisor input[type="file"] {
    background-color: var(--welcome-btn-color);
    padding: 12px 10px;
}

.member-dashboard .add-supervisor input[type="file"],
.member-dashboard .edit-supervisor input[type="file"] {
    border-radius: 10px;
}

.member-dashboard .add-supervisor #file-upload-button::file-selector-button,
.member-dashboard .edit-supervisor #file-upload-button::file-selector-button {
    background-color: var(--welcome-btn-color);
    padding: 8px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    color: #333;
}

.member-dashboard .add-supervisor .input-group-text {
    background-color: var(--welcome-btn-color);
    border-radius: 0px 15px 15px 0px;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-left: none;
}

.member-dashboard .add-supervisor a.login-btn {
    display: block;
    padding: 15px 10px;
    background-color: var(--green-hover-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    font-family: 'Gotham Medium';
    margin: 20px 0px;
    transition: all 0.3s ease;
}

.member-dashboard .add-supervisor a.login-btn:hover {
    text-decoration: unset;
    scale: 1.02;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, .15);
}

.member-dashboard .add-supervisor form .form-group input {
    background-color: #F7FAF9;
    padding: 12px 10px;
}

.member-dashboard .add-supervisor form .form-group .input-group-text {
    background-color: #F7FAF9;
}

.member-dashboard .add-supervisor form .form-group .input-group-text i {
    color: #61897B;
}

/* edit Observer */
.member-dashboard .edit-profie-page .form-group li a {
    background-color: var(--welcome-btn-color);
    color: #000;
    border-radius: 10px;
    padding: 8px;
}

.member-dashboard .edit-profie-page .form-group img.emoji {
    vertical-align: -2px !important;
}

.member-register .edit-profie-page .form-group li a.remove-doc,
.member-register .edit-profie-page .form-group a.remove-doc,
.member-register .edit-profie-page .form-group a.remove-doc-dynamic,
.member-register .edit-profie-page .form-group li a.remove-doc-dynamic {
    background-color: rgb(255 111 111);
    color: #fff;
    border-radius: 100%;
    padding: 5px;
    vertical-align: 0px !important;
    font-size: 14px;
    /* display: inline-block;
    width: fit-content; */
}

.add-supervisor .member-save-supervisor .form-group li a.remove-doc,
.add-supervisor .member-save-supervisor .form-group a.remove-doc,
.add-supervisor .member-save-supervisor .form-group a.remove-doc-dynamic,
.add-supervisor .member-save-supervisor .form-group li a.remove-doc-dynamic {
    background-color: rgb(255 111 111);
    color: #fff;
    border-radius: 100%;
    padding: 5px;
    vertical-align: 0px !important;
    font-size: 14px;
    /* display: inline-block;
    width: fit-content; */
}

/* Member Dashboard Page End */

/* Admin Dashboard Page */
.admin-dashboard h1 {
    color: var(--black-color);
    font-size: 40px;
    margin-bottom: 40px;
}

.admin-dashboard .search-btn {
    background-color: var(--grey-color);
    color: var(--white-color);
}

.admin-dashboard .dropdown button:hover {
    background-color: var(--green-hover-color);
}

.admin-dashboard table span.pending {
    background-color: var(--yellow-bg-color);
    color: var(--yellow-color);
    padding: 8px 10px;
    border-radius: 20px;
}

.admin-dashboard table span.approve {
    background-color: var(--green-color);
    color: var(--approve-color-text);
    padding: 8px 10px;
    border-radius: 20px;
}

.admin-dashboard table span.review {
    background-color: var(--review-bg-color);
    color: var(--white-color);
    padding: 8px 10px;
    border-radius: 8px;
}

.admin-dashboard .card .card-header {
    background-color: var(--card-header-bg-color);
}

.admin-dashboard .card .card-header h6 {
    font-size: 25px;
    color: var(--black-color);
}

.admin-dashboard .card .card-header a.create-event-btn {
    background-color: var(--grey-color);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.admin-dashboard .card .card-header a.create-event-btn:hover {
    background-color: var(--green-hover-color);
    scale: 1.02;
}




/* Supervisor Listing Page CSS Start */
.member-dashboard #content-wrapper .digital-training-hub-content .the-listing-area,
.member-dashboard #content-wrapper .supervisors-listing .the-listing-area {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
}

.member-dashboard #content-wrapper .digital-training-hub-content .the-listing-area h3 {
    font-family: "Gotham Medium";
    font-size: 22px;
    margin: 40px 0px 20px 0px;
}

.member-dashboard #content-wrapper .digital-training-hub-content .the-listing-area a {
    color: var(--sidebar-active-color);
}

.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-heading-an-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-heading-an-cta h2 {
    font-family: 'Gotham Medium';
    font-size: 25px;
    margin: 0px;
}

.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-heading-an-cta .add-new-supervisor,
.supervisors-listing .the-listing-area .the-table-view button.add-new-supervisor {
    font-family: 'Gotham Medium';
    background-color: #008F4D;
    padding: 15px 30px;
    color: white;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
}

.supervisors-listing .the-listing-area .the-table-view button.add-new-supervisor {
    border: none;
    padding: 10px 13px;
}

.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view table {
    width: 100%;
    border-collapse: collapse;
    /* Ensures the border between cells */
    margin: 20px 0;
    border: none;
    /* No border around the table */
    border-radius: 20px;
    background-color: #F7FAF9;
}

.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view th,
.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #c9c9c945;
    /* Border between rows */
    border-right: 1px solid #c9c9c945;
    background-color: transparent;
    color: #002D1D;
    font-family: 'Gotham Light';
}

.member-dashboard #content-wrapper .supervisors-listing.certificate .the-listing-area .the-table-view td {
    padding: 15px;
}

/* No right border for the last column */
.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view td:last-child,
.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view th:last-child {
    border-right: none;
}

.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view td:last-child,
.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view th:last-child {
    text-align: center;
}

.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view .action-icons a {
    text-decoration: none;
}

.member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view .action-icons i {
    margin: 0 5px;
    cursor: pointer;
    color: #008F4D;
}

/* Supervisor Listing Page CSS Finish */


/* Pagination Style */
.pagination-wrap .page-numbers {
    color: black;
    gap: 15px;
}

.pagination-wrap .page-numbers li a {
    width: 35px;
    height: 35px;
    border: 1px solid black;
    border-radius: 100%;
    margin-top: 5px;
    justify-content: center !important;
    align-items: center !important;
}

.pagination-wrap .page-numbers li a:hover {
    background-color: #008F4D;
    border: 1px solid #008F4D;
    color: white;
    border-radius: 100%;
    text-decoration: none;
}

.pagination-wrap .page-numbers li .current {
    width: 35px;
    height: 35px;
    justify-content: center !important;
    align-items: center !important;
    background-color: #008F4D;
    border: 1px solid #008F4D;
    color: white;
    margin-top: 5px;
    border-radius: 100%;
    font-size: 18px;
    font-weight: 600;
}

.supervisors-listing .pagination-wrap {
    font-size: 12px !important;
}



/* Observer Detail Page CSS Start */
.member-dashboard #content-wrapper .supervisor-details .the-listing-area {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    float: left;
    width: 100%;
}

.member-dashboard #content-wrapper .supervisor-details .the-listing-area h2 {
    font-family: 'Gotham Medium';
    font-size: 25px;
    margin-bottom: 20px;
}

.member-dashboard #content-wrapper .supervisor-details .the-listing-area p {
    font-family: 'Gotham Light';
    font-size: 16px;
    color: black;
    margin: 0px;
    margin-top: 20px;
    float: left;
    width: 50%;
}

.member-dashboard #content-wrapper .supervisor-details .the-listing-area p strong {
    font-family: 'Gotham Medium';
}

/* Observer Detail Page CSS Finish */




/* Reports Page CSS Start */
.member-dashboard #content-wrapper .reports-listing .the-listing-area {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
}

.member-dashboard #content-wrapper .reports-listing .the-listing-area h2 {
    font-family: 'Gotham Medium';
    font-size: 25px;
    margin-bottom: 20px;
}

.member-dashboard #content-wrapper .reports-listing .the-listing-area .the-table-view table {
    width: 100%;
    border-collapse: collapse;
    /* Ensures the border between cells */
    margin: 20px 0;
    border: none;
    /* No border around the table */
    border-radius: 20px;
    background-color: #F7FAF9;
}

.member-dashboard #content-wrapper .reports-listing .the-listing-area .the-table-view th,
.member-dashboard #content-wrapper .reports-listing .the-listing-area .the-table-view td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #c9c9c945;
    /* Border between rows */
    border-right: 1px solid #c9c9c945;
    background-color: transparent;
    color: #002D1D;
    font-family: 'Gotham Light';
}

/* No right border for the last column */
.member-dashboard #content-wrapper .reports-listing .the-listing-area .the-table-view td:last-child,
.member-dashboard #content-wrapper .reports-listing .the-listing-area .the-table-view th:last-child {
    border-right: none;
}

.member-dashboard #content-wrapper .reports-listing .the-listing-area .the-table-view td:last-child,
.member-dashboard #content-wrapper .reports-listing .the-listing-area .the-table-view th:last-child {
    text-align: center;
}

.member-dashboard #content-wrapper .reports-listing .the-listing-area .the-table-view .action-icons i {
    margin: 0 5px;
    cursor: pointer;
    color: #008F4D;
}

/* Reports Page CSS Finish */


/* header bar notification  */
.notifications-list .dropdown-header {
    background-color: var(--sidebar-active-color) !important;
    border: var(--sidebar-active-color) !important;
    padding: 16px 24px !important;
}

.notifications-list .icon-circle {
    background-color: var(--sidebar-active-color) !important;
}

/* Member Profile Page CSS Start */
.member-dashboard #content-wrapper .profile-details .the-listing-area {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    float: left;
    width: 100%;
}

.member-dashboard #content-wrapper .profile-details .the-listing-area .the-heading-an-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.member-dashboard #content-wrapper .profile-details .the-listing-area .the-heading-an-cta h2 {
    font-family: 'Gotham Medium';
    font-size: 25px;
    margin: 0px;
}

.member-dashboard #content-wrapper .profile-details .the-listing-area .profile-details-area p {
    font-family: 'Gotham Light';
    font-size: 16px;
    color: black;
    margin: 0px;
    margin-top: 20px;
    width: 50%;
    float: left;
}

.member-dashboard #content-wrapper .profile-details .the-listing-area .profile-details-area p strong {
    font-family: 'Gotham Medium';
}

.member-dashboard #content-wrapper .profile-details .the-listing-area .profile-details-area p a {
    color: #008F4D;
    font-family: 'Gotham Medium';
    text-decoration: underline;
}

.member-dashboard #content-wrapper .profile-details .the-listing-area .the-heading-an-cta .add-new-supervisor {
    font-family: 'Gotham Medium';
    background-color: #008F4D;
    padding: 15px 30px;
    color: white;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
}

/* Member Profile Page CSS Finish */
.notification-alerts .notification-title,
.notification-alerts .notification-trigger-by {
    color: var(--sidebar-active-color) !important;
}

/* Observer Detail Page CSS Start */
.member-dashboard #content-wrapper .notification-alerts .the-listing-area {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
}

.member-dashboard #content-wrapper .notification-alerts .the-listing-area h2 {
    font-family: 'Gotham Medium';
    font-size: 25px;
    margin-bottom: 20px;
}

.member-dashboard #content-wrapper .notification-alerts .the-listing-area p {
    font-family: 'Gotham Medium';
    font-size: 18px;
    color: black;
    margin: 0px;
    margin-top: 20px;
}

/* Observer Detail Page CSS Finish */




/* Sidebar CSS Start */
.sidebar .nav-item .collapse-inner {
    background-color: #004c31 !important;
    border-radius: 5px;
}

.sidebar .nav-item .collapse-inner .collapse-item {
    color: white !important;
}

.sidebar .nav-item .collapse-inner .collapse-item:hover {
    background-color: #004c31 !important;
    opacity: 0.7;
}

/* Sidebar CSS Finish */




.member-dashboard #content-wrapper .edit-profie-page,
.member-dashboard #content-wrapper .reset-password-form {
    background-color: white;
}

#content-wrapper #logoutModal a.btn.btn-primary {
    background-color: #008F4D;
}




/* CECOE dashboard - Main Modules Styling Start */
.member-dashboard .main-modules.member-modules {
    padding: 40px;
    background-color: var(--white-color);
    border-radius: 20px;
    margin-bottom: 40px;
    margin-top: 25px;
    box-shadow: 0 .15rem 1.75rem 0 rgba(58, 59, 69, .15);
}

.member-dashboard .main-modules.member-modules .the-headings h2 {
    font-family: 'Gotham Medium';
    font-size: 25px;
    text-align: center;
    text-transform: capitalize;
}

.member-dashboard .main-modules.member-modules .the-module-card {
    border: 2px solid #008F4D1A;
    border-radius: 30px;
    padding: 30px 30px 70px 30px;
    height: 100%;
    position: relative;
}

.member-dashboard .main-modules.member-modules .the-module-card h3,
.member-dashboard .main-modules.member-modules .the-module-card h3 a {
    font-family: 'Gotham Medium';
    font-size: 20px;
    text-transform: capitalize;
    margin: 10px 0px;
    text-decoration: none;
    color: black;
}

.member-dashboard .main-modules.member-modules .the-module-card h3 a:hover {
    color: #008F4D;
}

.member-dashboard .main-modules.member-modules .the-module-card p {
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 0px;
}

.member-dashboard .main-modules.member-modules .the-module-card .the-anchors {
    position: absolute;
    padding: 0px 30px;
    bottom: 30px;
    left: 0px;
}

.member-dashboard .main-modules.member-modules .the-module-card .the-anchors a {
    font-size: 16px;
    margin-right: 10px;
    text-decoration: underline;
    text-transform: capitalize;
    color: #008F4D;
    font-family: 'Gotham Medium';
    white-space: nowrap;
}

.member-dashboard .main-modules.member-modules .the-module-card .the-anchors a:hover {
    opacity: 0.7;
}

/* Member stats and event dropdown  */
.member-stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

/* Manage Member Recruitment Areas - Member Organization User style */
.observer-recruitment-area-fields .deployment-field {
    margin-left: 20px !important;
    margin-bottom: 15px !important;
}

.observer-recruitment-area-fields .deployment-field:nth-child(1),
.observer-recruitment-area-fields .deployment-field:nth-child(4) {
    margin-left: 0px !important;
}

.observer-recruitment-area-fields .deployment-field label {
    display: block !important;
    margin-bottom: 4px !important;
}

.observer-recruitment-area-fields .multiselect-selected.has-selections {
    color: #3c434a !important;
    font-weight: normal !important;
}

.observer-recruitment-area-fields .multiselect-options .multiselect-option {
    padding: 2px 10px !important;
    font-weight: normal !important;
    font-family: Gotham Light;
}

.manage-member-recruitment-areas label {
    font-size: 14px !important;
    font-weight: 100 !important;
}

.member-recruitment-stats .the-heading,
h3 {
    font-family: 'Gotham Light';
}

/* Manage Member Recruitment Areas - Member Organization User style */
.manage-member-recruitment-areas .deployment-field {
    margin-left: 20px !important;
    margin-bottom: 15px !important;
}

.manage-member-recruitment-areas .deployment-field:nth-child(1),
.manage-member-recruitment-areas .deployment-field:nth-child(4) {
    margin-left: 0px !important;
}

.manage-member-recruitment-areas .deployment-field label {
    display: block !important;
    margin-bottom: 4px !important;
    font-family: 'Gotham Medium';
}

.manage-member-recruitment-areas .multiselect-selected.has-selections {
    color: #3c434a !important;
    font-weight: normal !important;
}

.manage-member-recruitment-areas .multiselect-options .multiselect-option {
    padding: 2px 10px !important;
    font-weight: normal !important;
    font-family: 'Gotham Light';
}

.manage-member-recruitment-areas label {
    font-size: 14px !important;
    font-weight: 100 !important;
}

.member-recruitment-stats .the-heading,
h3 {
    font-family: Gotham Light;
}


.add-supervisor-locations .multiselect-selected {
    background-color: #eff5f3 !important;
}

.add-supervisor-locations {
    display: flex !important;
}

/* Hide Woreda, Kebele, and Polling Station fields on this page */
.add-supervisor-locations .deployment-field:nth-child(n+4) {
    display: none;
}

/* Allow read-only dropdowns to be opened */
.add-supervisor-locations .multiselect-readonly .multiselect-selected,
.add-supervisor-locations .multiselect-dropdown[data-target="supervisor_recruitment_zones"] .multiselect-selected {
    cursor: pointer;
}

.add-supervisor-locations .multiselect-readonly .multiselect-selected:after {
    content: "▼";
}

.add-supervisor-locations .multiselect-options {
    max-height: 140px !important;
}

.add-supervisor-locations .deployment-field label {
    display: block !important;
    margin-bottom: 4px !important;
}

.add-supervisor-locations .multiselect-selected.has-selections {
    color: #3c434a !important;
    font-weight: normal !important;
}

.add-supervisor-locations .multiselect-dropdown.active .multiselect-selected {
    border-color: #007bff;
    background: #e7f3ff;
}

.add-supervisor-locations .multiselect-options .multiselect-option {
    padding: 2px 10px !important;
    font-weight: normal !important;
    font-family: Gotham Light;
}

.add-supervisor-locations label {
    font-size: 14px !important;
    font-weight: 100 !important;
}


/* Digital Training Hub */

.training-hub-content ul,
.training-hub-content ol {
    padding-left: 20px;
}




/* ------------ Media Queries ---------------------- */

@media(max-width: 1023.98px) {

    /* for 992 */
    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view th,
    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view td {
        padding: 5px;
        font-size: 14px;
    }

}

@media(max-width: 991.98px) {

    /* for 768 */
    .landing-page,
    .login-page,
    .member-register {
        padding: 80px 0px 200px;
        background-size: 100px;
    }

    .landing-page .the-heading h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .landing-page .the-heading p {
        font-size: 18px;
    }

    .login-page .bg-img .padding {
        padding: 50px;
    }

    .login-page .the-content {
        margin-bottom: 20px;
    }

    .member-dashboard h1 {
        font-size: 20px;
    }

    .member-dashboard .graph-stats h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .member-dashboard .graph-stats strong {
        font-size: 16px;
    }

    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-heading-an-cta h2 {
        font-size: 20px;
    }

    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-heading-an-cta .add-new-supervisor {
        padding: 15px;
        font-size: 15px;
    }

    .member-dashboard .add-supervisor h2 {
        font-size: 25px;
    }

    .member-dashboard .add-supervisor {
        padding: 20px;
        margin: 20px 0px;
    }

    .member-dashboard .add-supervisor a.login-btn {
        margin: 10px 0px 0px 0px;
    }

    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view table {
        overflow-x: auto;
        display: block;
    }
}

/* Base styles for both anchor and button */
.member-register .member-register-form button.login-btn,
.member-dashboard .add-supervisor button.login-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--green-hover-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    font-family: "Gotham Medium";
    margin: 20px 0px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.member-register .member-register-form button.login-btn {
    display: unset;
    padding: 15px 30px;
    align-items: end;
}

/* Hover styles for both */
.member-register .member-register-form button.login-btn:hover,
.member-dashboard .add-supervisor button.login-btn:hover {
    text-decoration: unset;
    scale: 1.02;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, 0.15);
}

/* Apply same login-btn styling to buttons/links inside listing areas */
.member-dashboard .the-listing-area button.login-btn,
.member-dashboard .the-listing-area a.login-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--green-hover-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    font-family: "Gotham Medium";
    margin: 20px 0px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.member-dashboard .the-listing-area button.login-btn:hover,
.member-dashboard .the-listing-area a.login-btn:hover {
    text-decoration: unset;
    scale: 1.02;
    box-shadow: 0px 4px 10px 3px rgba(58, 59, 69, 0.15);
}


@media(max-width: 767.98px) {

    /* for 360 */
    .landing-page,
    .login-page,
    .member-register {
        padding: 50px 0px 150px;
        background-size: 80px;
    }

    .header img {
        width: 100% !important;
    }

    .landing-page .the-heading {
        margin-bottom: 20px;
    }

    .landing-page .the-heading h3 {
        font-size: 16px;
    }

    .landing-page .login-box {
        display: block;
        text-align: center;
    }

    .landing-page .login-box .icon {
        margin-right: 0px;
    }

    .landing-page .login-box .login-btn {
        margin-left: 0px;
    }

    .landing-page .login-box .login-btn a {
        width: 100%;
        display: block;
    }

    .landing-page .the-heading h1 {
        font-size: 25px;
        line-height: 28px;
        margin: 20px 0px;
    }

    .landing-page .the-heading p {
        font-size: 16px;
    }

    .login-page .the-content img {
        width: 100% !important;
    }

    .login-page .the-content {
        padding: 0px 24px;
    }

    .login-page .member-form {
        margin-top: 30px;
    }

    .login-page h1 {
        font-size: 20px;
    }

    .login-page .bg-img .padding {
        padding: 30px;
        text-align: center;
    }

    .login-page .bg-img .padding a {
        width: 100%;
    }

    .admin-login img {
        width: 100% !important;
    }

    .admin-login h1 {
        font-size: 24px;
    }

    .admin-login .admin-form {
        padding: 20px;
    }

    .member-register img.ceco-logo {
        width: 100% !important;
    }

    .member-register .member-register-form {
        padding: 20px;
    }

    .member-register .member-register-form h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .member-register .member-register-form p {
        font-size: 16px;
    }

    .member-register .member-register-form .multi-step {
        display: block;
    }

    .member-register .member-register-form .multi-step .member-data,
    .member-register .member-register-form .multi-step .documents,
    .member-register .member-register-form .multi-step .recruitement-areas {
        margin-bottom: 20px;
    }

    .member-register .member-register-form .multi-step .dashes {
        display: none;
    }

    .member-register .member-register-form a.back-btn {
        margin: 0px;
    }


    .member-dashboard .sidebar .sidebar-brand {
        padding: 10px;
    }

    .member-dashboard h1 {
        font-size: 16px;
    }

    .member-dashboard .main-modules.member-modules .the-headings h2 {
        font-size: 18px;
    }

    .member-dashboard .graph-stats {
        padding: 20px;
    }

    .member-sidebar {
        width: 10rem !important;
    }

    .member-dashboard .sidebar-profile {
        display: none;
    }

    .member-dashboard .topbar {
        margin: 0px;
    }

    .member-dashboard .total-stats {
        padding: 15px;
        border-radius: 20px;
    }

    .member-dashboard .total-stats .the-logo img {
        width: 50px;
    }

    .member-dashboard .total-stats p {
        font-size: 80%;
    }

    .member-dashboard .total-stats h3 {
        font-size: 20px;
    }

    .member-dashboard .graph-stats .light-green-color,
    .member-dashboard .graph-stats .dark-green-color {
        width: 15px;
        height: 15px;
    }

    .member-dashboard .progress {
        height: 15px !important;
    }

    .member-dashboard .add-supervisor h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .member-dashboard .add-supervisor button.login-btn {
        width: 100%;
    }

    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area {
        padding: 15px;
    }

    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-heading-an-cta {
        display: block;
        text-align: center;
    }

    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view table {
        display: inline-table;
    }

    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-heading-an-cta .add-new-supervisor {
        padding: 10px 0px;
        display: block;
        margin-top: 15px;
    }

    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-heading-an-cta .event-dropdown {
        margin-top: 15px;
    }

    .member-dashboard #content-wrapper .profile-details .the-listing-area {
        padding: 15px;
    }

    .member-dashboard #content-wrapper .profile-details .the-listing-area .the-heading-an-cta {
        display: block !important;
        text-align: center;
    }

    .member-dashboard #content-wrapper .supervisor-details .the-listing-area p,
    .member-dashboard #content-wrapper .profile-details .the-listing-area .profile-details-area p {
        width: 100%;
    }

    .member-dashboard #content-wrapper .profile-details .the-listing-area .the-heading-an-cta h2 {
        font-size: 20px;
    }

    .member-dashboard #content-wrapper .profile-details .the-listing-area .the-heading-an-cta .add-new-supervisor {
        display: block;
        margin-top: 15px;
    }

    .member-register .member-register-form button.login-btn {
        display: block;
        width: 100%;
    }

    /* Member Supervisor lisitng */
    .member-dashboard #content-wrapper #supervisors-listing .the-listing-area .the-table-view th:nth-child(2),
    .member-dashboard #content-wrapper #supervisors-listing .the-listing-area .the-table-view td:nth-child(2),
    .member-dashboard #content-wrapper #supervisors-listing .the-listing-area .the-table-view th:nth-child(3),
    .member-dashboard #content-wrapper #supervisors-listing .the-listing-area .the-table-view td:nth-child(3),
    /* Member observer lisitng */
    .member-dashboard #content-wrapper #observers-listing .the-listing-area .the-table-view th:nth-child(3),
    .member-dashboard #content-wrapper #observers-listing .the-listing-area .the-table-view td:nth-child(3),
    .member-dashboard #content-wrapper #observers-listing .the-listing-area .the-table-view th:nth-child(4),
    .member-dashboard #content-wrapper #observers-listing .the-listing-area .the-table-view td:nth-child(4),
    /* Supervisor event lisitng */
    .member-dashboard #content-wrapper #supervisor-events-listing .the-listing-area .the-table-view th:nth-child(3),
    .member-dashboard #content-wrapper #supervisor-events-listing .the-listing-area .the-table-view td:nth-child(3),
    .member-dashboard #content-wrapper #supervisor-events-listing .the-listing-area .the-table-view th:nth-child(4),
    .member-dashboard #content-wrapper #supervisor-events-listing .the-listing-area .the-table-view td:nth-child(4),
    .member-dashboard #content-wrapper #supervisor-events-listing .the-listing-area .the-table-view th:nth-child(5),
    .member-dashboard #content-wrapper #supervisor-events-listing .the-listing-area .the-table-view td:nth-child(5),
    /* Supervisor observer lisitng */
    .member-dashboard #content-wrapper #supervisor-observers-listing .the-listing-area .the-table-view th:nth-child(3),
    .member-dashboard #content-wrapper #supervisor-observers-listing .the-listing-area .the-table-view td:nth-child(3),
    .member-dashboard #content-wrapper #supervisor-observers-listing .the-listing-area .the-table-view th:nth-child(4),
    .member-dashboard #content-wrapper #supervisor-observers-listing .the-listing-area .the-table-view td:nth-child(4) {
        display: none;
    }

    .member-dashboard #content-wrapper .supervisors-listing .the-listing-area .the-table-view .action-icons i {
        margin: 0 1px;
        font-size: 12px;
    }

    .member-dashboard .main-modules.member-modules {
        padding: 20px;
    }

    .member-dashboard .main-modules.member-modules .the-module-card {
        padding: 20px;
        display: block;
        min-height: unset;
    }

    .member-dashboard .main-modules.member-modules .the-module-card .the-anchors {
        position: unset;
        padding: 0px;
    }

    .member-dashboard .main-modules.member-modules .the-module-card p {
        margin-bottom: 20px;
    }

    .pagination-wrap {
        margin-top: 10px;
    }

    .pagination-wrap .page-numbers {
        padding-left: 0px;
        justify-content: center !important;
    }

    .pagination-wrap .page-numbers li a,
    .pagination-wrap .page-numbers li .current {
        padding: 8px;
        font-size: 14px;
    }

    .training-hub-content h2 {
        font-size: 25px;
    }

    .member-dashboard #content-wrapper .digital-training-hub-content .the-listing-area h3 {
        font-size: 20px;
    }

}