:root {
  --dashboard-primary-color: #5932ea;
  --button-color: #ffffff;
  --icon-color: #5932ea;
  --icon-bg-color: #eeebfd;
  --text-color: #7e7e7e;
  --table-text-color: #7e7e7e;
}

/* Dashboard Typhghraphy */
.dashboard .h2,
.dashboard h3,
.dashboard h4,
.dashboard h5,
.dashboard h6,
.dashboard div,
.dashboard p,
.dashboard span,
.dashboard table,
.dashboard td,
.dashboard tr,
.dashboard label {
  font-family: "Poppins", sans-serif;
}
.dashboard .h2,
.dashboard h3,
.dashboard h4,
.dashboard h5,
.dashboard h6 {
  font-weight: 500;
}
.dashboard_heading {
  margin: 0;
}
.dashboard_heading.h2 {
  font-size: 25px;
  font-weight: 700;
}
.text-font {
  font-size: 16px;
}
/* Dashboard Navigation */
.admin-bar .dashboard {
  top: 32px;
}
.dashboard_full_width {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10012;
}
.dashboard_full_width .dashboard_content {
  overflow-y: scroll;
}
.dashboard_wrapper {
  box-shadow: 0px 10px 60px 0px #e2ecf980;
  background: var(--wrapper-bg, white);
  padding: 25px;
  border-radius: 30px;
}
.stat_title {
  color: #acacac;
  font-size: 14px;
}
.stat_number {
  color: #333333;
  font-size: 24px;
  font-weight: 600;
}
.stat_icon {
  font-size: 16px;
  color: var(--icon-color, black);
  background: var(--icon-bg-color, #f0f0f0);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 60px;
}

/* Dashboard table  */
.dashboard_table {
  border: none !important;
}
.dashboard_table th,
.dashboard_table td {
  border: none !important;
  border-bottom: 1px solid #eeeeee !important;
  padding: 13px !important;
  font-size: 14px;
  color: var(--table-heading-color, #7e7e7e);
}
.dashboard_table td:first-child,
.dashboard_table th:first-child {
  padding-left: 0 !important;
}
.dashboard_table .action_buttons i {
  color: var(--table-text-color, #7e7e7e);
  cursor: pointer;
}

/* Dashboard navigation styles */
.dashboard_navigation {
  background: var(--wrapper-bg, white);
}
.nav_links a {
  text-decoration: none;
  font-size: 14px;
}
.nav_links a.active,
.nav_links a:hover {
  background: var(--dashboard-primary-color);
  color: white;
}
.nav_links a.active svg {
  fill: red;
}

.dashboard_nav_links:not(.logout_nav) {
  width: 100%;
  left: 11px;
  background: white;
  transition: 0.3s ease all;
  /* scale: 0; */
}

.dashboard-button-primary {
  background: #5932ea;
  color: white;
  border: none;
}
.dashboard-button-primary:hover {
  background: #5932ea;
  color: white;
}
.dashboard-color-danger {
  color: #df0404;
}
.dashboard-button-danger {
  background: #df0404;
  color: white;
  border: none;
}
.dashboard-button-danger:hover {
  background: #df0404;
  color: white;
}
.search_box object {
  top: 7px;
  left: 11px;
}
.dashboard .search_box.with_icon input {
  padding-left: 44px !important;
}

.filter_dropdown {
  bottom: -140px;
  left: -150px;
  min-width: 200px;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px #0000001a;
  background: white;
}
.filter_dropdown .value {
  padding: 4px 10px;
  font-size: 16px;
  border-radius: 4px;
}
.filter_dropdown .value:hover {
  background: #f7f7f7;
}
.filter_values::before {
  content: "";
  position: absolute;
  top: -27px;
  right: 20px;
  z-index: 0;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-bottom-color: #ffffff;
  filter: drop-shadow(0px 7px 9px rgba(0, 0, 0, 0.1));
}

.dashboard input:not(#remember_me),
.dashboard .dashboard-input-form-field {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  padding: 7px 16px;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  color: var(--ast-form-input-text, #475569);
}

.dashboard-pagination a,
.dashboard-pagination span {
  background: #f5f5f5;
  padding: 7px 16px;
  border-radius: 5px;
  border: 1px solid #eeeeee;
}

.dashboard-pagination .current,
.dashboard-pagination a:hover,
.dashboard-pagination span:hover {
  background-color: #5932ea;
  border-color: #5932ea;
  color: white;
}

@media (max-width: 768px) {
  .dashboard_menu {
    position: absolute;
    left: -100%;
    transition: all 0.3s ease;
  }
}

.dashboard_menu.active {
  left: 0;
}

.dashboard_menu a {
  padding: 7px;
  color: white;
}

.dashboard ul.dashboard_nav_links {
  padding: 0 !important;
  list-style: none !important;
}
.dashboard_nav_links a {
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 8px;
}
.dashboard_nav_links .active img,
.dashboard_nav_links a:hover img {
  filter: brightness(2);
}
.dashboard_menu a:hover {
  color: white;
  color: var(--dashboard-button-color, red);
}
.close_nav {
  position: absolute;
  right: 18px;
  font-size: 26px;
}
.icon_color {
  color: var(--dashboard-button-color, red);
}
.dashboard_menu ul {
  padding: 0;
  margin: 0;
}
.dashboard_menu ul ul li {
  padding-left: 20px;
}
.dashboard_menu {
  padding: 20px;
}
.dashboard_menu img {
  width: 29px;
}
.dashboard-form label {
  margin-bottom: 10px;
  display: inline-block;
}

body:has(.dashboard_full_width) {
  overflow: hidden;
}

.custom_pagination {
  display: flex;
  gap: 6px;
}
.custom_pagination span,
.custom_pagination a {
  display: inline-block;
  background: #eeeeee;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 15px;
  border-radius: 4px;
}

.enorlled_chip {
  padding: 0 5px;
  font-size: 10px;
  width: 65px;
  min-width: 65px;
  text-align: center;
  border-radius: 17px;
}

.enrolled_member {
  margin-bottom: 10px;
}
.f_btn {
  background: #e1e1e1;
  margin-top: 10px;
  border-radius: 7px;
  padding: 7px 20px;
  border: 1px solid gray;
}
label[for="doc_file"] {
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .dashboard_navigation {
    top: 0;
    left: 0;
    bottom: 0;
    translate: -100%;
    transition: 0.3s ease all;
  }
  .dashboard_navigation.active {
    translate: 0;
    transition: 0.3s ease all;
  }
}
@media (max-width: 768px) {
  .dashboard_menu {
    position: absolute;
    left: -100%;
    transition: all 0.3s ease;
  }
}
