.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.btn {
    background-color: #8dc042;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    line-height: 1.1;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background-color: #8dc059;
    color: #fff;
}
.hide,
.hidden {
    display: none !important;
}
header#masthead {
    position: relative;
    overflow: hidden;
}
.head_img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.site-branding {
    position: relative;
    z-index: 2;
    padding: 80px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
main#dashboard {
    position: relative;
    z-index: 2;
}
.page-template-login header#masthead .custom-logo-link {
    display: none;
}
.page-template-login header#masthead .head-title {
    text-align: center;
}
h1.head-title {
    font-size: 64px;
    color: #fff;
}
.custom-logo-link {
    max-width: 300px;
}
.head_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.head_img:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.67) 0%, rgba(122, 188, 100, 0.46) 100%);
}
.page-template-login header#masthead .head_img:after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.27) 0%, rgba(122, 188, 100, 0.46) 100%);
}
.dashboard_forms_holder {
    background-image: url(/wp-content/themes/nexus/img/login-bg.jpg);
    margin-top: 250px;
}
.dashboard_login_form {
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 15px #00000070;
    width: 100%;
    max-width: 700px;
    margin: 0px auto 0;
    top: -150px;
    position: relative;
}
.dashboard_login_form .page_title {
    margin: 0;
    font-size: 38px;
    padding-bottom: 40px;
}
.form_field,
.login_rememberme {
    margin-bottom: 25px;
}
.form_field label,
.form_field .label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}
.form_field input[type="text"],
.form_field input[type="password"], .form_field  select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.login_button button {
    width: 100%;
    background-color: #8dc042;
    color: #fff;
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.login_button button:hover {
    background-color: #8dc059;
}
.login_pass_reset {
    margin-bottom: 25px;
    text-align: center;
}
.login_pass_reset a {
    color: #779ca7;
    font-weight: 500;
    text-decoration: none;
}
.modal_content label{
    margin-top: 10px;
}
.form_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.form_field {
    width: 100%;
}
.switch_field {
    display: flex;
    align-items: center;
    gap: 20px;
}
.switch {
    height: auto;
    display: flex;
}
.switch_label {
    font-weight: 600;
}
.switch input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.switch label {
	cursor: pointer;
	text-indent: -9999px;
	width: 80px;
	height: 40px;
	background: grey;
	display: block;
	border-radius: 100px;
	position: relative;
}

.switch label:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 36px;
	height: 36px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
}

.switch input:checked + label {
	background: #bada55;
}

.switch input:checked + label:after {
	left: calc(100% - 2px);
	transform: translateX(-100%);
}

.switch label:active:after {
	width: 130px;
}
.error_notice {
    display: block;
    border: 1px solid #ff0000;
    padding: 5px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 500;
}
.success_notice {
    display: block;
    border: 1px solid #00ff00;
    padding: 5px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 500;
}

.ctas_section {
    padding-bottom: 100px;
    margin-bottom: 10px;
    margin-top: 150px;
    background-image: url(/wp-content/themes/nexus/img/home-bg.png);
    background-position: top;
    background-repeat: no-repeat;
}
.ctas_section .container {
    position: relative;
    top: -80px;
}
.ctas_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
    gap: 30px 50px;
}
.cta_item {
    flex: 0 0 calc(33% - 22px);
    border-radius: 30px;
    box-shadow: 0 0 11px #00000040;
    position: relative;
    place-content: center;
    background-color: #fff;
    transition: transform .15s ease-in;
}
.cta_item:hover {
    transform: scale(1.03);
}
.cta_item a {
    text-decoration: none;
}
.cta_item .cta_inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    padding: 30px;
    height: 100%;
    position: relative;
}
.cta_item .cta_inner svg {
    position: absolute;
    bottom: 20px;
    right: 20px;
    height: 20px;
}
.cta_item a[href="#"] {
    pointer-events: none;
    cursor: pointer;
}
.cta_item .coming_soon {
    position: absolute;
    right: -20px;
    bottom: 0;
    background-color: #8dc042;
    color: #fff;
    padding: 10px 20px;
    transform: rotate(-20deg);
    border: 2px solid #000;
    font-size: 20px;
    text-transform: uppercase;
    width: 150px;
    text-align: center;
    line-height: 1.2;
}
.cta_icon {
    width: 120px;
    height: 120px;
}
.cta_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cta_title {
    flex: 1;
    font-size: 28px;
    line-height: 1.3;
}
.home .cta_item {
    flex: 0 0 calc(50% - 25px);
}

.home .ctas_section {
    background-position: bottom;
}
.home .ctas_grid {
    justify-content: center;
}
.home .cta_title {
    font-size: 40px;
}
@media(min-width:1400px){
    .home .cta_item
     {
        flex: 0 0 calc(30% - 22px);
     }
     .home  .container
     {
        max-width: 1400px;
    }
    .home .cta_title {
        font-size: 30px;
    }
    .cta_icon {
        width: 90px;
        height: 90px;
    }
}
    
.meeting_template .content-area,
.chatboard_template .content-area {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 1320px;
}
.meeting_template .content-area .left,
.chatboard_template .content-area .left {
    flex: 1 0 30%;
}
.meeting_template .content-area .right,
.chatboard_template .content-area .right {
    flex: 1 0 69%;
}
h2.page_title {
    font-size: 38px;
}
.right {
    background-color: #e8ebef;
    padding: 40px;
    overflow: hidden;
}
.meeting_actions {
    display: flex;
    justify-content: end;
    margin-bottom: 0px;
    align-items: center;
}
.meeting_actions .meeting_title {
    margin-right: auto;
    margin-bottom: 0;
    margin-top: 0;
}
.chatboard_actions {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
}
.chatboard_add_new {
    width: 100%;
    text-align: center;
    padding: 15px;
}
.files_section_title {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    text-align: center;
    border-radius: 12px;
}
.meeting_list th,
.meeting_file_list th {
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    position: relative;
    bottom: -20px;
}
tr.meeting_item {
    margin-bottom: 30px;
}
tr.meeting_item td {
    background-color: #fff;
}
tr.meeting_item td:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
tr.meeting_item td:last-child {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
tr.meeting_item td svg {
    width: 40px;
    height: 40px;
    display: block;
}
tr.meeting_item h3.meeting_title {
    font-weight: 500;
    margin: 0;
}
tr.meeting_item .meeting_date,
tr.meeting_item .meeting_author {
    font-size: 16px;
    font-weight: 500;
}
tr.meeting_item a {
    text-decoration: none;
    color: #779ca7;
    padding: 10px;
    display: block;
    min-height: 60px;
    place-content: center;
}
.meetings_pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.meetings_pagination .page-numbers {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border: 1px solid #8dc042;
    line-height: 1;
    color: #8dc042;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}
.meetings_pagination .page-numbers.current {
    background-color: #8dc042;
    color: #fff;
}
.go_back svg {
    transform: rotate(180deg);
    height: 16px;
    width: auto;
}
.go_back {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000000 !important;
    text-decoration: none;
    font-weight: 600;
    gap: 10px;
    margin-bottom: 20px;
}
input.wpcf7-form-control.wpcf7-submit {
    background-color: #8dc042;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: background-color 0.3s ease;
}
input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #8dc059;
}
.chat_search_field {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
}
.chat_search_field .search_chats {
    position: relative;
    height: auto;
    padding: 6px 14px 7px 10px;
    background-color: #8dc042;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    display: flex;
    align-items: center;
    min-height: 40px;
    cursor: pointer;
    border: 1px solid #8dc042;
}
.chat_search_field .search_chats svg {
    width: 16px;
    height: 16px;
}
.chat_search_field .search_chats svg path {
    fill: #fff !important;
}
.load_more_chats.hidden {
    display: none;
}
.chat_search_field input {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #808080;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}
.chat_list,
.pre_chat_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}
.chat_item {
    font-size: 22px;
    padding: 12px 30px;
    font-weight: 700;
    background-color: #fff;
    color: #000;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    border: 1px solid #b3b3b3;
    box-shadow: 0 0 5px #00000030;
}
.chat_item.active {
    background-color: #000;
    color: #fff;
    border: 1px solid transparent;
}
.active_chat_title {
    font-size: 26px;
    margin-bottom: 30px;
}

.chat-form,
.chat-form .comment_row {
    position: relative;
}
.chat-form .comment-form-comment {
    margin: 0;
}
.chat-form .comment-form-comment textarea,
.chat-form .comment_row textarea {
    padding: 10px 60px 10px 10px;
    border-radius: 50px;
    border: 1px solid #808080;
}
.chat-form .form-submit {
    position: absolute;
    top: 5px;
    right: 20px;
    margin: 0;
}
.chat-form .form-submit button.submit_chat {
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.chat-form .form-submit button.submit_chat svg {
    height: 18px;
    width: auto;
}

html.modal-active, body.modal-active {
  overflow: hidden;
}
.modal {
    position: fixed;
    display: flex;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 10;
}
.modal.active {
    transform: scale(1);
}
.modal.active .modal_background {
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.modal .modal_background {
    background: rgba(0, 0, 0, 0);
    animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal .modal_content {
    opacity: 0;
    animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal.active .modal_content {
    background: white;
    padding: 50px;
    display: block;
    border-radius: 3px;
    font-weight: 300;
    position: relative;
    box-sizing: border-box;
}
.modal.out {
    animation: quickScaleDown 0s 0.5s linear forwards;
}
.modal.out .modal_background {
    animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.modal.out .modal_content {
    animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.form_row.form_actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}
#ui-datepicker-div {
    font-size: 16px;
}
.mobile_close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.mobile_close svg {
    width: 20px;
    height: 20px;
}
.mobile_chats_open {
    display: none;;
}
.mobile_chats_open svg {
    width: 20px;
    height: 20px;
}



.radio_options,
.wpcf7-radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.radio_options input,
.wpcf7-radio input {
    display: none;
}
.radio_options label,
.wpcf7-radio .wpcf7-list-item {
    flex: 1;
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #00000040;
    padding: 7px;
    cursor: pointer;
    margin: 0;
}
.radio_options label:hover,
.wpcf7-radio .wpcf7-list-item:hover {
    background-color: #e8ebef;
}
.radio_options input:checked + label,
.wpcf7-radio .wpcf7-list-item:has(input:checked) {
    background-color: #8dc042;
    color: #fff;
}
.wpcf7-list-item label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    cursor: pointer;
	gap: 10px;
}
.logout_btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
}
.logout_btn a {
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-size: 16px;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 0 5px #00000040;
    color: #000;
    text-decoration: none;
    transition: transform .3s ease-in;
    line-height: 1;
}
.logout_btn a:hover {
    transform: scale(1.1);
}
.logout_btn a svg {
    width: 20px;
}
@media(max-width: 767px) {
    .wpcf7-list-item-label {
        font-size: 12px;
    }
    .radio_options label, .wpcf7-radio .wpcf7-list-item {
        padding: 5px;
    }
    .form_field label,
    .form_field .label {
        font-size: 14px;
        font-weight: 500;
    }
}



@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}
@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}

@keyframes quickScaleDown {
  0% {
    transform: scale(1);
  }
  99.9% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}


/* User tenplate */
.user-image img {
    width: 160px;
    height: auto;
    object-fit: cover;
    border-radius: 100%;
    border: 2px solid #fff;
}
.user-field {
    padding-top: 30px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.page-template-user-profile .container{
    background-color: #e8ebef;
    padding: 40px;
    overflow: hidden;
    max-width: 900px;
    border-radius: 20px;
}
.user-field input[type="text"], .user-field textarea,.user-field input[type="password"],.user-field input[type="tel"]{
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 16px 20px;
    color:#779ca7;
}
.user-field input[type="submit"] {
    
    background-color: #8dc042;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    line-height: 1.1;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    width: 300px;
    margin: auto;
}
.page-template-user-profile h3 {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

/* Members */
div#users-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    
}

.members-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c2c2c;
}


.member-card {
    display: flex;
    gap: 20px;
    background: #f9f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.member-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}


.member-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}


.member-content {
    flex: 1;
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}


.member-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
}



/* SVG Icon */
.meta-item .icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
    flex-shrink: 0;
}


.member-bio {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.users-filter{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    
    flex-wrap: wrap;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}
.users_template{
    flex-wrap: wrap;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;  
}

/* Input + Select shared style */
.users-filter input,
.users-filter select {
    height: 42px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #1f2937;
    outline: none;
    transition: all 0.2s ease;
}

/* Search input specific */
#user-search {
    flex: 1;
    min-width: 220px;
}

/* Select specific */
#user-order {
    min-width: 120px;
    cursor: pointer;
}

/* Focus state */
.users-filter input:focus,
.users-filter select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Placeholder */
#user-search::placeholder {
    color: #9ca3af;
}
div#users-pagination {
    margin: 40px auto;
    text-align: center;
}

/* Responsive */
@media(min-width: 768px) and (max-width: 1024px) {
    .meeting_template .content-area,
    .chatboard_template .content-area {
        flex-direction: column;
    }
    .meeting_template .content-area .left,
    .chatboard_template .content-area .left,
    .meeting_template .content-area .right,
    .chatboard_template .content-area .right {
        flex: 1 0 100%;
    }

    .site-branding {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }
    h1.head-title {
        font-size: 36px;
        margin: 0;
    }
    .custom-logo-link {
        max-width: 200px;
    }
    .ctas_section {
        padding-bottom: 40px;
    }
    .ctas_grid {
        gap: 20px;
    }
    .home .cta_item {
        flex: 0 0 calc(50% - 20px);
    }
    .cta_item .cta_inner {
        gap: 20px;
    }
    .cta_icon {
        width: 60px;
        height: 60px;
    }
    .home .cta_title {
        font-size: 20px;
    }
}
@media(max-width: 767px) {
    .site-branding {
        padding: 40px 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    h1.head-title {
        font-size: 26px;
    }
    h2.page_title {
        font-size: 26px;
    }
    .btn {
        font-size: 16px;
    }
    .ctas_section {
        padding-bottom: 10px;
    }
    .cta_item {
        flex: 1 0 100% !important;
    }
    .cta_item .cta_inner {
        gap: 20px;
        padding: 20px;
    }
    .cta_icon {
        width: 60px;
        height: 60px;
    }
    .cta_title {
        font-size: 22px !important;
    }
    tr.meeting_item h3.meeting_title {
        font-size: 16px;
    }
    tr.meeting_item .meeting_date, tr.meeting_item .meeting_author {
        font-size: 12px;
    }
    tr.meeting_item td svg {
        width: 25px;
        height: 25px;
    }
    tr.meeting_item a {
        padding: 5px;
    }
    th {
        font-size: 12px;
    }
    ol.comment-list .children {
        padding-left: 13px !important;
    }
    .chat_item {
        font-size: 18px;
    }
    .modal.active .modal_content {
        padding: 20px;
        max-width: 90%;
    }
    .form_row.form_actions {
        flex-direction: column;
    }
    .meeting_template .files_section_title {
        display: none;
    }
    .meeting_actions .meeting_title {
        font-size: 20px;
    }
    .chatboard_template .left {
        position: fixed;
        z-index: 10;
        transform: translateX(-100%);
        height: 100%;
        width: 100%;
        transition: transform .3s ease-in;
        top: 0;
        left: 0;
        background-color: #fff;
    }
    .chatboard_template .left.opened {
        transform: translateX(0);
    }
    .mobile_close {
        display: block;
    }
    .mobile_chats_open {
        display: block
    }
    .mobile_chats_open.btn {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}