:root {
  --sb-width: 300px;
  --transition-speed: 0.4s;
}
html  , body{
  scroll-behavior: auto;
  overflow-x: hidden ;
}
/* ===== BUTTONS CSS ===== */

.primary-btn,
.primary-btn-outline,
.primary-btn-gray {
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  border: 1px solid var(--primary);
  border-radius: 50px !important;
  transition: var(--transition);
  line-height: 1em;
  font-family: "Satoshi";
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.primary-btn-outline {
  background-color: transparent;
  color: var(--primary);
}

.primary-btn-gray {
  background-color: #f3f4f6;
  color: var(--black);
  border: 1px solid #f3f4f6;
}

.primary-btn,
.primary-btn-outline,
.primary-btn-gray {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover,
.primary-btn-outline:hover,
.primary-btn-gray:hover {
    background-color: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
    /* box-shadow: 0 4px 20px #3b82f650; */
}

/* Image transition */
.primary-btn img,
.primary-btn-outline img,
.primary-btn-gray img {
    transition: filter 0.3s ease;
}

.primary-btn:hover img,
.primary-btn-outline:hover img,
.primary-btn-gray:hover img {
  filter: brightness(0) invert(1);
}
.primary-btn:hover::before,
.primary-btn-outline:hover::before,
.primary-btn-gray:hover::before {
  width: 100%;
}
/* .primary-btn::before,
.primary-btn-outline::before,
.primary-btn-gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  transition: width 0.3s ease;
  border-radius: inherit;
  background-color: #3b82f6;
}
.primary-btn:hover,
.primary-btn-outline:hover,
.primary-btn-gray:hover {
  color: #fff;
  border-color: #3b82f6;
    box-shadow: 0 4px 20px #3b82f650;
} */





.primary-btn img,
.primary-btn-outline img,
.primary-btn-gray img{
  height: 12px;
}

.dropdown-arrow{
  width: 16px !important;
}
/* ===== BUTTONS CSS ===== */


/*=====PAGINATION=====*/ 

.dataTables_paginate .pagination {
  display: flex !important;
  gap: 10px;
}

.dataTables_wrapper .dataTables_paginate .page-item .page-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px !important;
  height: 32px !important;
  background: #F5F5F5;
  color: #404B52;
  border: 1px solid #EEEEEE !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-item.active .page-link {
  background: #1C274C !important;
  color: white !important;
  border: none !important;
}

.page-item .page-link:hover {
  background: #1C274C !important;
  color: white !important;
  border: none !important;

}

/* ===== PAGINATION ===== */



.dashboard-main-container {
  display: flex;
  margin-top: 10rem;
}

.sidebar {
 width: var(--sb-width);
  background-color: white;
  position: fixed;
  /* top: 18%; */
  top: 18vh ;
  left: 0;
  /* box-shadow: 0 16px 95px 0 rgb(226 236 249 / 50%); */
  border-radius: 0px 20px 20px 0px;
  overflow: hidden;
  z-index: 100;
  padding: 1.2rem;
   transition: width var(--transition-speed) ease;
}

.sidebar .sidebar-toggle img {
  transform: rotate(180deg);
  transition: transform 0.5s ease; 
}

.sidebar-collapsed .sidebar-toggle img {
  transform: rotate(0deg);
}


body.sidebar-collapsed {
  --sb-width: 100px;
}

.dashboard-content-container {
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  transition: padding var(--transition-speed) ease;
}

.dashboard-content-inner {
  width: 100%;
  padding: 0 2rem;
  /* margin-top: 100px; */
  padding-left: calc(var(--sb-width) + 1%); 
  transition: all 0.5s ease;
}

.sidebar-nav {
  margin-top: 20px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-link {
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links li {
  width: 100%;
}

.nav-links li a {
  border-radius: 0.8rem;
  transition: all 0.5s ease-in-out;
  padding: 1em;
}

.nav-links li a span {
  display: block;
  color: #62748e;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

.nav-links .menu-icon {
  height: 1rem;
  width: 1rem;
}

.nav-links li a {
  transition: background-color 0.3s ease-in, color 0.3s ease-in,
    transform 0.3s ease-in-out;
}

.nav-links li a img {
  transition: filter 0.5s ease;
}

.nav-links li a:hover {
  background-color: #2c3a55;
  color: #ffffff;
  transform: scale(1.05);
}

.nav-links li a:hover,
.nav-links li a.active,
.nav-links li a:active {
  background-color: #2c3a55;
  color: #ffffff;
  transform: scale(1);
}

.nav-links li a:hover img,
.nav-links li a.active img,
.nav-links li a:active img {
  filter: brightness(0) invert(1);
}
.nav-links li a:hover span,
.nav-links li a.active span,
.nav-links li a:active span {
  color: #ffffff;
}

.sidebar.sidebar-collapsed {
  width: 100px;
}

.sidebar.sidebar-collapsed .nav-links li a span {
  display: none;
}

.sidebar.sidebar-collapsed .nav-links li a {
  justify-content: center;
}

.sidebar.sidebar-collapsed .nav-links li a {
  gap: 0;
}

.mobile-toggle-btn {
  display: none;
  background-color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #fff;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
     box-shadow: 0 2px 6px rgba(255, 255, 255, 0.15);

}

.mobile-toggle-btn img{
  width: 10px;
}

.mobile-toggle-btn span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.shadow-left {
  position: fixed;
  top: 40%;
  left: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.8;
  background-color: #d9f1ff;
  box-shadow: 0 0 15rem 10rem rgba(217, 241, 255, 1);
  filter: blur(5rem);
  will-change: transform, opacity;
  z-index: -10;
}

.shadow-right {
  position: fixed;
  top: 60%;
  right: 0;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.9;
  background-color: #e7f0fe;
  box-shadow: 0 0 14rem 20rem rgba(231, 240, 254, 1);
  filter: blur(5rem);
  will-change: transform, opacity;
  z-index: -10;
}

.intro-section .counter-card {
  display: block;
  position: relative;
  border: 1px solid #3b82f6;
  border-radius: 12px;
  padding: 16px 30px 30px 30px;
  transition: all 0.5s ease;
  color: inherit;
  text-decoration: none;
}

.counter-card.card-2,
.counter-card.card-4 {
  margin-top: 40px;
}

.counter-card.card-3 {
  margin-top: 30px;
}

.intro-section .counter-icon {
  position: absolute;
  top: 0;
  left: 30px;
  transform: translateY(-50%);
  height: 50px;
  width: auto;
}

.intro-section .counter-card:hover {
  cursor: pointer;
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4),
    0 4px 6px -4px rgba(59, 130, 246, 0.2);
}

.intro-section .counter-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 8px 16px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s ease;
}

.intro-section .counter-card:hover .counter-view-all {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}

.content-section .events-search {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #3b81f4;
  box-shadow: 0px 0px 22px 1px #0000001c;
  border-radius: 60px;
  padding: 7px 7px 7px 30px;
}

.content-section .events-search svg {
  flex-shrink: 0;
}

.content-section .events-search input {
  width: 100%;
  padding: 10px;
  border: none;
  color: var(--black);
}

.content-section .events-search input::placeholder {
  color: #9f9f9f;
}

.content-section .events-search button {
  padding: 13px 30px;
  min-width: fit-content;
}

/* 
#practice-page .content-section{
  margin: 40px 0px 80px 0px;
} */

.table-container {
  background-color: var(--white);
  padding: 32px 0px;
  border-radius: 24px;
  box-shadow: 0 8px 50px 0 rgb(226 236 249 / 50%);

}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #eeeeee !important;
}

table.dataTable.table-striped>tbody>tr.odd>* {
  box-shadow: inset 0 0 0 9999px rgb(217 217 217 / 20%) !important;
}

table.dataTable.table-hover>tbody>tr:hover>* {
  box-shadow: inset 0 0 0 9999px rgb(217 217 217 / 20%) !important;
}

.table> :not(:last-child)> :last-child>* {
  border-bottom-color: #eeeeee !important;
}

.table tr th {
  color: var(--gray);
  font-size: 14px;
  font-weight: 400;
}

.table> :not(caption)>*>* {
  padding: 0.9rem !important;
}

.table tbody tr td {
  font-size: 14px;
  color: #292d32 !important;
  font-weight: 500;
}

.table tbody tr td a{
  color: #292d32 !important;
  transition: all 0.3s ease;
}

.table tbody tr td a:hover{
  color: var(--secondary) !important;
}

.table thead tr th:first-child {
  padding-left: 2rem !important;
}

.table tbody tr td:first-child {
  padding-left: 2rem !important;
}

.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 6px 12px;
}

.dataTables_info,
.dataTables_paginate {
  font-size: 12px;
  color: #6c757d;
  margin-top: 15px;
}

.forum {
  background-color: #e9eaee;
  padding: 0.6em 1em;
  border-radius: 8px;
  display: inline-block;
}

.custom-table-footer {
  display: flex;
  justify-content: end;
  align-items: center;
  padding:0 3%;
  color: #b5b7c0;
  margin-top: 1.5rem;
}

.dataTables_wrapper .dataTables_info {
  padding: 0 !important;
  margin: 0 !important;
  color: #b5b7c0;
  font-weight: 500;
  font-size: 0.8rem;
}

.custom-card {
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.custom-card .blue-section {
  background: linear-gradient(90deg, #3b82f6 0%, #3570d4 20%, #1c274c 100%);
  padding: 3rem 2.5rem;
}

.custom-card .white-section {
  background: #fff;
  padding: 2.5rem;
}

.white-section.gray-gradient {
  background-color: rgb(250 245 255 / 50%);
  border-top: 1px solid #F3E8FF;
}

.custom-card .white-section.bottom-border {
  border-bottom: 1px solid #f3e8ff;
}

/* .box-layout {
    display: flex;
    align-items: center; 
    gap: 24px;
} */

.box-icon-container {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  box-shadow: 0px 10px 10px rgb(0 0 0 / 5%), 0px 4px 16px rgba(0, 0, 0, 0.09);
}

.box-icon-container img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.box-text-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s ease-in-out;
}

.support-card:hover {
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.02);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.08);
    transform: translateY(-3px);
    cursor: pointer;
}


.card-body-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.support-icon-box {
  min-width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon-red {
  background-color: #ffe2e2;
  color: #e7000b;
}

.icon-green {
  background-color: #d0fae5;
  color: #009966;
}

.icon-blue {
  background-color: #dbeafe;
  color: #155dfc;
}

.support-title {
  color: #1c274c;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.support-desc {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 0;
}

.btn-navy i {
  font-size: 12px;
}

.blue-grad-card {
  border-radius: 24px;
  border: 1px solid rgba(20, 71, 230, 0.3);
  background: linear-gradient(135deg, #0f172b 0%, #1c398e 50%, #312c85 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2.5rem;
}

.badge-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.7rem 1rem;
  background: rgba(0, 201, 80, 0.2);
  border: 1px solid rgba(5, 223, 114, 0.3);
  border-radius: 50px;
}

.badge-text {
  color: #7bf1a8;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.badge-circle {
  width: 8px;
  height: 8px;
  background: #05df72;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.99;
}

.blue-grad-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding: 30px 0px 0px 0px;
}

/* ====== RESOURCES PAGE ===== */

.resource-card {
  background-color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 20px;
  position: relative;
  transition: all 0.5s  ease-in-out;
    cursor: pointer;
}

.resource-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
    z-index: 10;
}

.resource-card-header {
  position: absolute;
  top: 0;
  right: 24px;
}

.resource-badge {
    background-color: var(--secondary);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 0px 0px 22px 22px;
}



.custom-pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.custom-pagination-container .total-result {
  color: #b5b7c0;
  font-size: var(--font-small);
  font-weight: 500;
}


.custom-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem; 
}

.custom-pagination ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}


.custom-pagination li a,
.custom-pagination button {
  background-color: #f5f5f5;
  color: #404b52;
  width: 2.25rem; 
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem; 
  border: 1px solid #eeeeee;
  font-size: var(--font-x-small);
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.custom-pagination li a.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}


.custom-pagination li a:hover:not(.active),
.custom-pagination button:hover {
  background-color: #eeeeee;
  border-color: #dddddd;
  color: var(--primary);
}

.custom-pagination button svg {
  display: block;
}


/* ====== RESOURCES PAGE ===== */

/* ====== MEMBER PAGE ===== */

.member-card {
  border-radius: 20px;
  border: 4px solid rgba(28, 39, 76, 0.05);
  background: #f8faff;
  box-shadow: 6px 6px 14px 0 rgba(0, 0, 0, 0.04);
  transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.member-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.12);
    transform: translateY(-5px);
    background: #ffffff;
}

.member-card .profile-box-img img {
  border-radius: 10px;
  height: 70px;
  width: 70px;
  object-fit: cover;
}

.member-card .member-badge {
  background-color: var(--secondary);
  padding: 6px 10px;
  border-radius: 6px;
  display: block;
  width: fit-content;
}

.member-card .profile-item {
  position: relative;
  padding-left: 10px;
}

.member-card .profile-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 35%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 6px;
}

.member-card .email-list-check {
  appearance: none;
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #000000;
  border-radius: 2px;
  display: inline-grid;
  place-content: center;
  transition: all 0.2s ease-in-out;
}

.member-card .email-list-check:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.member-card .email-list-check:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  background-color: white;
}

.member-card .email-list-check:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  outline: none;
}

/* ====== MEMBER PAGE ===== */

/* ====== USER PROFILE PAGE ===== */

.user-prof-img {
  border-radius: 20px;
  max-height: 320px;
  max-width: 320px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.user-prof-card {
  background-color: rgb(59 129 244 / 8%);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid transparent;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.user-prof-card:hover {
  border: 1px solid #3b82f6;
  box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.15), 
              0 10px 15px -10px rgba(59, 130, 246, 0.1);
  transform: translateY(-3px);
  background-color: rgb(59 129 244 / 5%);
}
.user-prof-title {
  position: relative;
  padding-left: 10px;
}

.user-prof-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 80%;
  background-color: var(--secondary);
  border-radius: 6px;
}

.user-prof-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.user-prof-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.user-prof-badge {
  background-color: var(--secondary);
  padding: 8px 10px;
  border-radius: 6px;
  display: block;
  width: fit-content;
}

/* ====== USER PROFILE PAGE ===== */

/* ===== EMAILS PAGE  ===== */

.leadership-card {
  background-color: #f8f8f8;
  border: 1px solid var(--secondary);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  box-shadow: 4px 6px 12px 0 rgba(0, 0, 0, 0.08);
   transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.leadership-card:hover {
  transform: translateY(-4px);
    /* border-color: rgba(59, 130, 246, 0.4); */
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.12);
    background: #EEF1FB;
}


.leadership-card .content-bx {
  padding-left: 20px;
  position: relative;
}

.leadership-card .content-bx::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 6px;
}

.leadership-card .deatails-bx {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}

.leadership-card .deatails-bx .date-time-bx {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 6px;
}

.leadership-card .deatails-bx .date-time-bx * {
  color: #484848;
  font-size: 12px;
}

.date-time-bx .divider {
  background-color: #484848b3;
  width: 2px;
  height: 12px;
}

.date-time-bx .icon img {
  width: 14px;
}

.circle-group {
  display: flex;
  align-items: center;
}

.circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 10px;
  margin-left: -5px;
  border: none;
}

.circle:first-child {
  margin-left: 0;
}

.bg-green {
  background-color: #7bcc55;
  color: #000;
}

.bg-blue {
  background-color: #3790c7;
  color: #000;
}

.bg-orange {
  background-color: #d89f24;
  color: #000;
}

.bg-lime {
  background-color: #c3d824;
  color: #000;
}

.bg-black {
  background-color: #000000;
  color: #fff;
  font-size: 8px;
}

/* =====  EMAILS PAGE  ===== */

/* =====  USER PROFILE DETAIL PAGE  ===== */

.statistic-card {
  border: 1px solid var(--secondary);
  border-radius: 20px;
  background: rgba(59, 130, 246, 0.15);
  padding: 1.2rem;
  transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.statistic-card:hover {
    /* 1. Sharpen the border using your brand blue */
    border-color: #3b82f6;

    /* 2. Lighten the background slightly to make it look active */
    background: rgba(59, 130, 246, 0.2);

    /* 3. The "Light" Shadow: 
       A very soft, wide-spread blue glow to make it stand out 
       without looking heavy. */
    box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.2);

    /* 4. Tiny scale up for a "pressed" feel */
    transform: scale(1.02);
}

.lead-mgmt-card {
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: var(--white);
  box-shadow: 8px 8px 16px 1px rgba(59, 130, 246, 0.12);
  padding: 1rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.lead-mgmt-card:hover {
    border: 1px solid #3b82f6;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    background: linear-gradient(to bottom right, var(--white), rgba(59, 130, 246, 0.02));
}

.img-box {
  display: flex;
  align-items: center;
  gap: 24px;
}

.img-box img {
  height: 90px;
  width: 90px;
  border-radius: 10px;
}

.img-box .list-bullet {
  display: block;
  background-color: var(--secondary);
  height: 6px;
  width: 6px;
  border-radius: 100px;
}

.anc-services {
  width: 100%;
}

.anc-services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.anc-card {
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(59, 130, 246, 0.3);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.gen-info-tab {
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 3px -1px rgba(0, 0, 0, 0.1);
}

.gen-info-card {
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  padding: 1.3rem;
}

/* =====  USER PROFILE DETAIL PAGE  ===== */

/* =====  LISTSERV PAGE  ===== */

.ls-card {
  height: 100%;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  position: relative;
}

.ls-card.un-sub {
  border: 1px solid #f3f4f6;
  background-color: var(--white);
}

.ls-card.sub {
  border: 1px solid var(--secondary);
  background-color: rgba(59, 129, 244, 0.05);
  position: relative;
}

.ls-card.un-sub:hover {
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.02);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.08);
    transform: translateY(-3px);
}

.ls-card.sub:hover {
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
    z-index: 10;
}

.ls-card .icon-bx img {
  height: 40px;
  width: 40px;
  border-radius: 10px;
}

.ls-card .subs-bx {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-badge {
  background-color: var(--secondary);
  color: var(--white);
  padding: 2px 24px 6px 24px;
  display: inline-block;
  border-radius: 0px 0px 20px 20px;
  position: absolute;
  top: 0;
  right: 24px;
}

.ls-guid-card {
  border-radius: 20px;
  background: rgba(59, 130, 246, 0.12);
  padding: 1.5rem;
}

.ls-guid-card .icon-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cntct-sprt-crd {
  background-color: var(--white);
  padding: 5%;
  border-radius: 14px;
  border: 1px solid #dbeafe;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.faqs-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #f3f4f6 !important;
  background: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 14px -1px rgba(0, 0, 0, 0.1);
}

.faqs-card .accordion {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.faqs-card .accordion-item {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #e5e7eb !important;
}

.faqs-card .accordion-item:first-of-type {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.faqs-card .accordion-item:last-of-type {
  border-bottom: none !important;
  border-bottom-right-radius: 16px !important;
  border-bottom-left-radius: 16px !important;
}

.faqs-card .accordion-button {
  padding: 1.4rem !important;
}

.faqs-card .accordion-button:not(.collapsed) {
  color: unset !important;
  background-color: unset !important;
  box-shadow: unset !important;
}

.faqs-card .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 16px !important;
  border-top-right-radius: 16px !important;
}

.faqs-card .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 16px !important;
  border-bottom-left-radius: 16px !important;
}

.faqs-card .accordion-button::after {
  background-image: url("/member-assets/images/accordion-expand.svg");
}

.faqs-card .accordion-button:not(.collapsed)::after {
  background-image: url("/member-assets/images/accordion-collapse.svg");
}

.faqs-card .accordion-body {
  padding: 0rem 1.4rem 1.4rem 1.4rem;
}

/* =====  LISTSERV PAGE  ===== */

/* =====  GENERAL INFORMATION TAB  ===== */
.gen-info-bx {
  display: flex;
  align-items: end;
  gap: 24px;
}

.gen-info-img {
  border-radius: 50%;
  border: 4px solid var(--white);
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(15, 23, 43, 0.05),
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  height: 160px;
  width: 160px;
  position: relative;
}

.edit-img {
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 30px;
  height: 30px;
}

.gen-info-img .user-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.user-info-card {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0.8rem;
}

.form-control.cstm-input,
.form-select.cstm-input {
  background-color: rgb(248 250 252 / 50%);
  height: 44px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray);
}

.form-control.cstm-input.practice {
  background-color: #e2e2e2;
}

p.form-control.cstm-input.practice {
  padding: 4px 12px;
}

.gen-info-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gen-info-tabs li {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
}

.gen-info-tabs li:hover {
  cursor: pointer;
}

.gen-info-tabs .arrow-icon {
  opacity: 0;
}

.gen-info-tabs li.active {
  background: #fff;
  box-shadow: 0 0 0 1px #e2e8f0, 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.gen-info-tabs li.active span {
  color: #000;
}

.gen-info-tabs li.active img {
  filter: brightness(0);
}

.gen-info-tabs li.active .arrow-icon {
  opacity: 1;
}

.gen-info-tabs li span {
  color: #62748e;
  font-size: 12px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: flex;
}

.req-change {
  background-color: var(--primary);
  color: #fff;
  font-size: 12px;
  border-radius: 50px;
  box-shadow: 0 3.552px 21.313px 0 rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(1.332066297531128px);
  padding: 6px 14px;
}

.req-change:hover {
  color: #fff;
}

.add-social {
  background-color: #ebf2fe;
  border-radius: 8px;
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2c3a55;
  font-size: 20px;
}

.social-link-bar {
  background-color: #ebf2fe;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

textarea.form-control.cstm-input {
  min-height: 120px;
}

/* =====  GENERAL INFORMATION TAB  ===== */

/* ===== SELECT 2 CSS ===== */
.select2-dropdown {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.select2-container--default .select2-selection--multiple {
  background-color: rgb(248 250 252 / 50%) !important;
  padding: 12px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  color: var(--gray) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 0 !important;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
  padding: 6px !important;
  background-color: #ecedef !important;
  margin-bottom: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding: 4px !important;
}

.select2-container .select2-search--inline .select2-search__field {
  height: 20px !important;
  margin-top: 0 !important;
  font-size: 14px !important;
  font-family: "Satoshi" !important;
  font-weight: 400;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  height: unset !important;
  margin-top: 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  position: unset !important;
  border-right: none !important;
}

.select2-results__options {
  padding: 0;
}

.select2-results__option {
  padding: 10px 15px;
  font-size: 12px;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s ease;
}

.select2-results__option--highlighted {
  background-color: #f3f4f6 !important;
  color: #000 !important;
}

.select2-results__option--selected {
  background-color: #e5e7eb !important;
  color: #000 !important;
}

.select2-selection__choice {
  background-color: #f3f4f6 !important;
  color: #374151 !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 10px;
  padding: 4px 8px;
  margin: 3px;
}

/* ===== SELECT 2 CSS ===== */

@media screen and (max-width: 1680px) {
  .dashboard-main-container {
    margin-top: 8rem;
  }

  /* ===== LISTSERV PAGE ===== */
  .faqs-card {
    gap: 20px;
    padding: 1.6rem;
  }

  .ls-guid-card {
    padding: 1.2rem;
  }

  /* ===== LISTSERV PAGE ===== */

  /* ===== BENCHMARKING PAGE ===== */
  .custom-card,
  .blue-grad-card ,
  .gen-info-tab,
  .user-prof-card{
    border-radius: 20px;
  }

  .custom-card .blue-section,
  .custom-card .white-section,
  .blue-grad-card ,
  .gen-info-tab,
  .user-prof-card{
    padding: 2rem;
  }

  .support-card {
    padding: 20px;
  }

  .support-icon-box {
    min-width: 40px;
    height: 40px;
  }

  .badge-green {
    padding: 0.5rem 1rem;
  }

  .badge-text {
    font-size: 12px;
  }

  /* ===== BENCHMARKING PAGE ===== */


  .leadership-card {
    padding: 1.5rem;
}

.lead-mgmt-card ,
.statistic-card{
    border-radius: 16px;
}

.img-box img {
    height: 80px;
    width: 80px;
}


/* .user-prof-img {
    max-height: 300px;
    max-width: 300px;
} */

}

@media screen and (max-width: 1440px) {
  .member-card .profile-box-img img {
    height: 64px;
    width: 64px;
}

.img-box img {
    height: 72px;
    width: 72px;
}

.img-box {
    gap: 16px;
}



/* .user-prof-img {
    max-height: 240px;
    max-width: 240px;
} */



}

@media screen and (max-width: 1280px) {

  .support-title {
    font-size: 16px;
  }

  .support-desc {
    font-size: 12px;
  }


  .gen-info-img {
    height: 140px;
    width: 140px;
}
}

@media screen and (max-width: 1024px) {
  .dashboard-main-container {
    margin-top: 6rem;
  }

  .custom-card .blue-section,
  .custom-card .white-section,
  .blue-grad-card ,
  .gen-info-tab,
  .user-prof-card{
    padding: 1.5rem;
  }

  .support-card {
    padding: 16px;
  }

  .box-icon-container {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .box-icon-container img {
    width: 16px;
    height: 16px;
  }

  .box-text-container {
    gap: 4px;
  }

  .badge-green {
    padding: 0.4rem 1rem;
  }

  .img-box img {
    height: 60px;
    width: 60px;
}
}

@media screen and (max-width: 880px) {

  /* ===== LISTSERV PAGE ===== */
  .faqs-card {
    padding: 1.2rem;
  }

  .ls-guid-card {
    padding: 1.2rem;
  }

  .faqs-card .accordion-body {
    padding: 0rem 1rem 1rem 1rem;
  }

  .faqs-card .accordion-button {
    padding: 1rem !important;
  }

  /* ===== LISTSERV PAGE ===== */

  /* ===== BENCHMARKIBG PAGE ===== */

  .custom-card,
  .blue-grad-card ,
  .gen-info-tab,
  .user-prof-card{
    border-radius: 16px;
  }

  .blue-grad-card-footer {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .blue-grad-card-footer {
    margin-top: 20px;
    padding: 20px 0px 0px 0px;
  }

  .badge-text {
    font-size: 10px;
  }

  /* ===== BENCHMARKIBG PAGE ===== */

  .leadership-card{
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }

  .leadership-card .deatails-bx{
    justify-content: start;
    align-items: start;
    gap: 10px;
  }

  .leadership-card {
    padding: 1rem;
}


.circle {
    width: 20px;
    height: 20px;
}


.leadership-card .content-bx {
    padding-left: 16px;
}



.user-prof-item 
.icon-bx img{
  width: 16px;
  height: 16px;
}



}

@media screen and (max-width: 640px) {
  .dashboard-main-container {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 641px) and (max-width: 767px) {
  .dashboard-main-container {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {

  
.custom-pagination-container {
justify-content: center;
}

.intro-section .counter-card {
padding: 16px;
}

  .primary-btn, .primary-btn-outline, .primary-btn-gray {
    font-size: 12px;
    padding: 0.625rem 1.25rem;
    line-height: 1rem;
 
}

  .dashboard-content-inner {
    padding: 0 0.5rem;
  }

  .mobile-toggle-btn {
    display: inline;
    z-index: 10;
  }

  .sidebar {
    position: fixed;
    bottom: 5rem;
    left: unset !important;
    right: 2rem !important;
    width: 100%;
    max-width: 240px;
    border-radius: 12px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease,
      visibility 0.4s;
    padding: 1rem !important;
    overflow: hidden;
  }

  .sidebar.show-sidebar {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }

  .sidebar-toggle {
    display: none;
  }

  .sidebar-collapsed {
    /* width: fit-content !important; */
    min-width: 250px;
  }

  .sidebar.sidebar-collapsed .nav-links li a span {
    display: inline;
    transition: all 0.4s ease;
  }

  .sidebar-nav {
    margin-top: 0px;
  }

  .nav-link {
    justify-content: start !important;
    gap: 16px !important;
  }

  .nav-links {
    gap: 16px;
    transition: all 0.4s ease;
    max-height: 450px;
    overflow-y: auto;
  }

 .nav-links li a {
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.4s ease;
}

 .nav-links li a:hover {
   transform: scale(1);
}

  .nav-links .menu-icon {
    height: 1rem;
    width: 1rem;
  }



  /* ===== MAIN PAGE ===== */

  #main-page .practices-table{
  margin-top: 0em;
}

  .intro-section .counter-icon {
    height: 30px;
    left: 20px;
  }

  .counter-card.card-2,
  .counter-card.card-4 {
    margin-top: 30px;
  }

  .counter-card.card-3 {
    margin-top: 30px;
  }

  /* ===== MAIN PAGE ===== */


  /* ===== PRACTICES PAGE ===== */
  /* #practice-page .content-section{
    margin: 20px 0px 80px 0px;
  } */

    /* ===== PRACTICES PAGE ===== */


  /* ===== BENCHMARKING PAGE ===== */

  .custom-card .blue-section,
  .custom-card .white-section,
  .blue-grad-card ,
  .gen-info-tab,
  .user-prof-card{
    padding: 1.2rem;
  }

  /* ===== BENCHMARKING PAGE ===== */
.gen-info-bx {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.gen-info-img {
  height: 120px;
  width: 120px;
}

.user-info-card {
  padding: 1rem 0.5rem;
}

.soc-img-link img {
  width: 24px;
  height: 24px;
}

.user-info-card {
  border-radius: 12px;
}

.form-control.cstm-input, .form-select.cstm-input {
    font-size: 12px;
}

.tab-content-wrapper label{
  margin-bottom: 8px ;
}

.delete-social img{
  width: 14px;
}


.select2-container--default .select2-selection--multiple .select2-selection__choice {
margin:4px !important
}



.table-container {
    padding: 0px 0px 16px 0px ;
    border-radius: 16px;
      overflow-y: hidden;
  overflow-x: scroll;
}

.dataTables_wrapper .dataTables_info,
.table tr th{
    font-size: 12px;

}

.table tbody tr td {
    font-size: 10px;
}

.forum {
    border-radius: 4px;
}



  .events-search input {
    font-size: 12px;
  }


  .events-date-filter {
    width: 100%;
  }
  
  .events-date-filter select {
    text-align: left;
  }
}


.events-date-filter.custom-select {
  position: relative;
  flex: 1;
  min-width: 120px;
}

.select-trigger {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--primary);
  padding: 15px 40px 15px 24px;
  border-radius: 100px;
  font-size: 12px;
  width: 100%;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select-trigger::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  pointer-events: none;
}
.events-date-filter {
  position: relative;
  display: inline-block;
  width: 100%;
}
.events-date-filter .select-dropdown {
  width: 100%;
}
.events-date-filter.active .select-trigger::after {
  transform: translateY(-60%) rotate(225deg);
}
.events-date-filter .select-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  /* width: 260px; */
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  margin: 0;
  list-style: none;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;

  transition: all 0.25s ease;
}
.events-date-filter.active .select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.events-date-filter .select-dropdown li {
  padding: 12px 25px;
  color: #707070;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.events-date-filter .select-dropdown li:hover {
  background-color: #f8faff;
  color: var(--primary);
}



.user-profile-dropdown {
  position: relative;
  display: inline-block;
}

.user-trigger img {
  width: 40px; 
  height: 40px;
  cursor: pointer;
  border: 2px solid transparent;

}
.user-profile-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    min-width: 200px;
    background-color: var(--white);
    border: 1px solid rgba(59, 130, 246, 0.1); 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
    list-style: none;
    z-index: 1001;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.user-profile-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.user-profile-dropdown .dropdown-menu li a {
    width: 100%;
    padding: 12px 16px;
    display: block;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.user-profile-dropdown .dropdown-menu li a:hover {
    background-color: #f8fafc;
    color: var(--primary);
}

.user-profile-dropdown .dropdown-arrow {
    transition: transform 0.3s ease;
}

.user-profile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Logged-in member's profile photo in the header — round, cover-cropped so
   uploaded photos and the default avatar both look like a clean circle. */
.user-trigger .header-user-avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e9f2;
    background: #f1f5f9;
}
@media screen and (max-width:991px){
  :root {
  --sb-width: 200px;
}

.sidebar.sidebar-collapsed {
    width: 100px;
}

.nav-links li a:hover,
.nav-links li a.active,
.nav-links li a:active {
  transform: scale(1);
}



  .leadership-card{
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }
.leadership-card .deatails-bx {
    justify-content: start;
    align-items: start;
    gap: 10px;
}



/* .dashboard-content-inner {
    margin-top: 100px;
} */
}


@media screen and (min-width:991px) and (max-width:1440px)  {

  body:not(.sidebar-collapsed) .dashboard-content-inner {
    max-width: 100%;
    margin-left: auto !important;
    padding-left: calc(var(--sb-width) + 2%) !important;
  }
}

@media screen and (min-width:1680px) and (max-width:1919px)  {
  .dashboard-content-inner {
    padding-left: 2rem;
  }
  body:not(.sidebar-collapsed) .dashboard-content-inner {
    max-width: 100%;
    margin-left: auto !important;
    padding-left: calc(var(--sb-width) - 6%) !important;
  }
} 


@media screen and (min-width:1920px) and (max-width:2199px) {
  .dashboard-content-inner {
    padding-left: 2rem;
  }
  body:not(.sidebar-collapsed) .dashboard-content-inner {
    max-width: 100%;
    margin-left: auto !important;
    padding-left: calc(var(--sb-width) - 14%) !important;
  }
}



@media screen and (min-width:2200px) {
  .dashboard-content-inner {
    padding-left: 2rem;
  }
  body:not(.sidebar-collapsed) .dashboard-content-inner {
    max-width: 100%;
    margin-left: auto !important;
    padding-left: 2rem;
  }
}


.listserv-modal{
  background-color: #fff;
  background-image: url('../images/listser-modal-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
}


.plyr--video {
  border-radius: 20px;
}


.modal {
  padding-right: unset  ;
}

.modal-backdrop {
    z-index: 1040 !important;
}
.modal {
    z-index: 1050 !important;
}

.modal-dialog {
    pointer-events: auto !important;
}



.popup-close {
    margin-bottom: -32px !important;
    z-index: 1;
    margin-right: 10px;
}

.popup-close 
.btn-close{
  background-color:#e0e2e3;
  opacity: 1;
  background-size: 10px;
  border-radius: 6px;
}

.popup-close 
.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 1 !important;
}


.pdf-viewer-wrapper {
    position: relative;
    width: 100%;
    height: 500px; 
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    display: flex;
    flex-direction: column;
}

.pdf-viewer-wrapper iframe, 
.pdf-viewer-wrapper object, 
.pdf-viewer-wrapper embed {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.pdf-viewer-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
    .pdf-viewer-wrapper {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .pdf-viewer-wrapper {
        height: 300px;
        border-radius: 8px;
    }
}
