ul {
  list-style: none;
}

.text-white {
  color: #ffffff !important;
}

label {
  font-weight: normal !important;
}

.large-icon {
  font-size: 40px;
}

.form-control:focus {
  border: 1px solid #0d6efd;
  box-shadow: none;
}

.form-select:focus {
  box-shadow: none;
  border: 1px solid #0d6efd;
}

.table-stripped {
  background: #e4e4e4 !important;
}

.clickable-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.clickable-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.clickable-card:hover {
  background: #e6f2ff;
}

/* Siedbar */
.main-sidebar {
  background: #003d99;
}

/* Sidebar links */
.main-sidebar ul li a {
  color: #fff !important;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  transition: background 0.2s;
}

/* Parent links: keep transparent when submenu is expanded, but add hover */
.nav-item.has-treeview>.nav-link {
  background: transparent;
}

.nav-item.has-treeview>.nav-link:hover {
  background: #0066cc;
}

/* Active child links */
.nav-item .nav-treeview .nav-link.active {
  background: #1f68b2 !important;
  padding-left: 1rem;
  border-left: 3px solid #ffffff;
  color: #ffffff !important;
  font-weight: 500;
  border-radius: 0 5px 5px 0;
}

/* Hover effect for child links */
.nav-item .nav-treeview .nav-link:hover {
  background: #2869ab !important;
}


/* Scroll bar */
::-webkit-scrollbar {
  width: 12px;
  height: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #3e81e4;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0265d5;
  transition: opacity 0.5s;
}

/* Scrollbar track background */
::-webkit-scrollbar-track {
  background: #95c2f3;
}

.dropdown-toggle::after {
  display: none;
}


/* Set hover effect for dropdown items */
.dropdown-menu .dropdown-item:hover {
  background-color: #0861ef;
  color: white;
}

/* Set active or focused state for dropdown items */
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
  background-color: #0d6efd;
  color: white;
}

/* Hide photo preview by default */
#imgPreview {
  display: none;
}


/* Calendar */
.calendar-container {
  text-align: center;
}

.month-calendar {
  border-collapse: collapse;
  margin: 0 auto;
}

.month-calendar th,
.month-calendar td {
  width: 200px;
  height: 60px;
  border: 1px solid #ccc;
}

.month-calendar caption {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.navigation-buttons {
  margin-bottom: 10px;
}

.month-calendar th {
  color: #ffffff;
  background-color: #0d6efd;
}

/* Highlight current date on calendar */
.current-date {
  background-color: #e6f2ff;
}

.month-calendar td:hover {
  color: #ffffff;
  cursor: pointer;
  background: #80d4ff;
}

/* Live camera */
#my_camera {
  width: 120px;
  height: 120px;
  border: 1px solid #cce6ff;
  background: #f0f0f5;
}

.email-container {
  position: relative;
}

.email-container input {
  padding-left: 40px;
}

.email-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.password-container {
  position: relative;
}

.password-container input {
  padding-left: 40px;
  padding-right: 40px;
}

.lock-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.password-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  color: #5e8acb;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Filter form on select option */
.options-container {
  display: none;
  z-index: 1000;
  background: #e9e8e8;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 10px;
}

.options-item {
  cursor: pointer;
}

.options-item:hover {
  background: #ffffff;
}


/* Table more action hover effect */
.more-vert-hover {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.5s ease;
  color: #0d6efd;
  background: #e6eeff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-vert-hover:hover {
  background: #0d6efd;
  color: #ffffff;
}