:root {
  --black-50: #f6f6f6;
  --black-100: #e7e7e7;
  --black-200: #d1d1d1;
  --black-300: #b0b0b0;
  --black-400: #888888;
  --black-500: #6d6d6d;
  --black-600: #5d5d5d;
  --black-700: #4f4f4f;
  --black-800: #454545;
  --black-900: #3d3d3d;
  --black-950: #000000;

  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;

  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;

  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --orange-950: #431407;

  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --pink-800: #9d174d;
  --pink-900: #831843;
  --pink-950: #500724;

  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  --purple-950: #3b0764;

  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --red-950: #450a0a;

  --white-50: #ffffff;
  --white-100: #efefef;
  --white-200: #dcdcdc;
  --white-300: #bdbdbd;
  --white-400: #989898;
  --white-500: #7c7c7c;
  --white-600: #656565;
  --white-700: #525252;
  --white-800: #464646;
  --white-900: #3d3d3d;
  --white-950: #292929;

  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-200: #fef08a;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --yellow-700: #a16207;
  --yellow-800: #854d0e;
  --yellow-900: #713f12;
  --yellow-950: #422006;
}

/* Default */
* {
  font-family: 'kanit', sans-serif;
}

body {
  background: var(--white-50);
}

/* Navbar */
.accordion-body > a > div,
#sidebar-menu > a > div {
  background: var(--blue-100);
}

#sidebar-menu .active {
  background: var(--blue-100);
}

.accordion-body > .active > div,
#sidebar-menu > .active div {
  background: var(--white-50);
}

#show-notification-history > a:hover {
  background: var(--gray-100);
  transition: background 300ms linear;
}

/* Banner */
#banner-image {
  height: 250px;
}

/* Dashboard */
#dashboard {
  margin: 72px 0px 0px 0px;
}

.event-holiday {
  z-index: 4 !important;
  overflow: hidden;
  opacity: 1 !important;
  color: var(--black-900);
}

@media screen and (min-width: 768px) {
  /* Navbar */
  #offcanvas-notification {
    border-radius: 12px 0px 0px 12px;
  }

  #offcanvas-sidebar {
    top: 72px;
    z-index: 0;
    transform: none;
    visibility: visible;
    overflow: hidden;
    width: 300px;
    border-radius: 0px 12px 12px 0px;
    border-right: 1px dashed var(--gray-300);
  }

  #offcanvas-sidebar.show ~ .offcanvas-backdrop {
    display: none;
  }

  /* Banner */
  #banner-image {
    height: 100%;
  }

  /* Dashboard */
  #dashboard {
    padding: 0px 0px 0px 300px;
  }

  /* Leave */
  #offcanvas-account,
  #offcanvas-history,
  #offcanvas-holiday,
  #offcanvas-manage,
  #offcanvas-preview,
  #offcanvas-reject {
    width: 60%;
    border-radius: 12px 0px 0px 12px;
  }
}

@media screen and (max-width: 767px) {
  /* Navbar */
  #offcanvas-notification,
  #offcanvas-sidebar {
    width: 100%;
  }

  /* Leave */
  #offcanvas-account,
  #offcanvas-history,
  #offcanvas-holiday,
  #offcanvas-manage,
  #offcanvas-preview,
  #offcanvas-reject {
    width: 100%;
  }
}
