:root {
  /* --header-h: 56px; */
  --gap: 15px;
  --radius: 20px;
  /* for rgba hover */
  --clr-main-bg: rgb(243, 255, 229);
  --clr-card: #fff;
  --clr-primary: #0e3a58;
  --clr-text: #2d3748;
  --clr-muted: #718096;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --clr-light: #f9fbfc;
  --clr-card: #ffffff;
  --clr-border: #e2e8f0;
  --clr-error: #e63946;
  --clr-success: #2a9d8f;
  --clr-warning: #e9c46a;
  --clr-hover: rgba(143, 189, 86, 0.15);
}

body {
  font-family: 'Public Sans', sans-serif;
  background: var(--clr-main-bg);
  color: var(--clr-text);
  height: 100%;
  overflow: hidden;
}

.bg-custom-info {
  background-color: #0e3a58;
	height: 40px;
	padding-top:7px
}

.bg-custom-info:hover {
  background-color: #8fbd56;
}

.bg-custom-schedule {
  background-color: #0e3a58;
	height: 40px;
	padding-top:7px;
  margin-left:7px;
}
.bg-custom-schedule:hover {
 background-color: #8fbd56;
}

.bg-custom-schedule svg{
 color: #0e3a58;
}



.btn-custom-primary {
  background-color: #0e3a58;
}

.btn-custom-primary:hover {
  background-color: #8fbd56;
}

.btn-custom-login {
  background: transparent;
  color: var(--clr-primary) !important;
  border: 2px solid var(--clr-primary);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-custom-register {
  background-color: var(--clr-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-custom-login:hover{
  border: 2px solid #8fbd56 !important;
  color: #8fbd56 !important;
}
.btn-custom-register:hover {
  background-color: #8fbd56;
}
.main-header-text-heading{
  color: var(--clr-primary);
}
.text-custom-info {
  color: #0e3a58;
}

.noti-a:hover {
  color: #8fbd56;
}

.noti-a {
  color: var(--clr-primary);
  font-weight: 600;
  margin-left: 4px;
  margin-bottom: 15px;
}

.noti-dropdown {
  background-color: rgb(243, 255, 229);
  ;
}

.pulse-color {
  background-color: #0e3a58;
}

.side-menu__item {
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  border-radius: 12px;
  max-width: fit-content;
  transition: background-color 0.3s, color 0.3s;
  color: #0e3a58;
}

.side-menu__item:hover,
.side-menu__item.active {
  background-color: rgb(233, 252, 220) !important;
  color: #8fbd56;
  margin-left: 30px;
}

.side-menu__item.active svg,
.side-menu__item:hover svg {
  stroke: #8fbd56;
}

.side-menu__item.active .side-menu__label,
.side-menu__item:hover .side-menu__label {
  font-weight: 500;
}

body.sidenav-toggled .side-menu__item {
  background-color: transparent !important;
  margin-left: 30px !important;
  padding: 15px 0 !important;
}

body.sidenav-toggled .side-menu__item.active {
  background-color: transparent !important;
  margin-left: 30px !important;
  padding: 15px 0 !important;
}

body.sidenav-toggled .side-menu__label {
  display: none;
}

body.sidenav-toggled .side-menu__item.active svg {
  stroke: #8fbd56;
}

.app-sidebar .main-sidemenu {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.logout-wrapper {
  padding-top: 20px;
  margin-bottom: 70px;
  margin-left: 5px;
}

/* Toast notifications */
.toast-container {
  z-index: 1100;
}

.toast {
  transition: opacity 0.3s ease;
  margin-bottom: 0.5rem;
}

#profile-heading{
  font-weight: 600;
  color: var(--clr-primary) !important;
}