/* Import Material Icons */
@font-face {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-weight: 400;
  src: url("../icons/material-icons.woff2") format('woff2');
}

.material-icons-outlined {
  font-family: 'Material Icons Outlined';
  font-style: normal;
  font-size: 20px;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

.material-icons-outlined {
  vertical-align: middle;
  line-height: 1px;
}

body {
  font-family: 'Montserrat', sans-serif;
}

ul {
  list-style: none;
}

label {
  font-weight: normal !important;
}

.text-grey {
  color: #949494;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.large-icon {
  font-size: 50px;
}

.form-control:focus {
  border: 1px solid #167f8f;
}

.btn-modal {
  color: #fff;
  border-color: #e3e2e2;
  border-radius: 0;
  background: transparent;
}

.btn-modal:hover {
  color: #fff;
  border-color: transparent;
  background: #167f8f;
}

th {
  font-weight: normal;
  color: #17a2b8;
}

.hover-column {
  background-color: #fafafa;
}

th:hover {
  background-color: #fafafa;
}

.table-stripped {
  background: #e4e4e4 !important;
}

/* DataTables active page count */
.page-item .page-link {
  color: #17a2b8;
}

.page-item.active .page-link {
  border: none;
  background: #17a2b8;
}

/* More icon hover in the table */
.material-icons-outlined {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.more-vert-hover:hover {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fafafa;
  position: absolute;
}

/* Siedbar */
.main-sidebar {
  background: #25475e;
}

.nav-item .active {
  background: #416e8c !important;
}

/* Scroll bar */
::-webkit-scrollbar {
  width: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #356281;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #537891;
  transition: opacity 0.5s;
}

/* HTML select field */
.custom-select {
  position: relative;
  display: inline-block;
}

/* Hide the original select element */
.custom-select select {
  display: none;
}

.custom-select input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.custom-select select {
  position: relative;
  z-index: 0;
  background: transparent;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

/* Hide bootstrap default dropdown icon */
.dropdown-toggle::after {
  display: none;
}



/* Action Dropdown */
.dropdown-menu.bg-info {
  background-color: #17a2b8;
  color: white;
}

/* Set hover effect for dropdown items */
.dropdown-menu.bg-info .dropdown-item:hover {
  background-color: #138496;
  color: white;
}

/* Set active or focused state for dropdown items */
.dropdown-menu.bg-info .dropdown-item:focus,
.dropdown-menu.bg-info .dropdown-item:active {
  background-color: #117a8b;
  color: white;
}



/* Calendar */
.calendar {
  max-height: 40rem;
}

.calendar th {
  color: #ffffff;
  line-height: 3rem;
  background: #1e96a9;
}

/* Highlight current date on calendar */
.calendar .current-date {
  background-color: #e6f2ff;
}

/* Live camera */
#my_camera {
  width: 120px;
  height: 120px;
  border: 1px solid #cce6ff;
  background: #f0f0f5;
}

/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

/* Form filter field */
.options-container {
  display: none;
  position: absolute;
  z-index: 1000;
  background: white;
  width: 96%;
  max-height: 200px;
  overflow-y: auto;
  box-sizing: border-box;
}

.option-item {
  cursor: pointer;
  padding-left: 12px;
  padding-bottom: 2px;
}

.option-item:hover {
  background: #f0f0f0;
}


.view-photo {
  cursor: pointer;
}

.view-photo:hover {
  color: #167f8f;
}


/* Table Action Icon */
.action-icon {
  opacity: 0;
  color: #17a2b8;
  transition: opacity 0.3s ease;
}

tr:hover .action-icon {
  opacity: 1;
  color: #17a2b8;
}

/* Table Action Icon and Text */
.hidden-link {
  opacity: 0;
  color: #17a2b8;
  transition: opacity 0.3s ease;
}

tr:hover .hidden-link {
  opacity: 1;
  color: #17a2b8;
}


/* Show or Hide button */
.show-hide-content {
  color: #167f8f;
  font-weight: bold;
  cursor: pointer;
}