* {
  font-family: "Poppins", "Roboto", Arial, sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#offcanvasSidebar {
  max-width: 80%;
}

.dropdown-menu {
  max-height: 200px;
  overflow-y: scroll;
}

.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  animation: fadeIn 0.3s alternate;
}

.navbar-nav {
  flex-direction: row !important;
  /* Overriding the default flex-direction */
}

.nav-item {
  margin-right: 10px;
  /* Optional: Add some spacing between the items */
}

.counter-item {
  padding: 16px;
  text-align: center;
}

.counter-number {
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 32px;
  display: block;
}

.counter-label {
  font-size: 16px;
}

/* Style for each stage */
.counter-stage {
  flex-grow: 1;
  display: flex;
  justify-content: space-evenly;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.counter-stage:last-child {
  border-right: none;
}

.hover-effect {
  min-width: 3rem;
  min-height: 3rem;
  height: 3rem;
}

.area-color {
  background: rgb(18 12 52/8%);
  border: 4px solid #00000012;
}

.area-color-border {
  border: 4px solid #00000012;
}

.progress {
  flex-grow: 1;
  height: 40px;
}

.progress-bar {
  transition: width 0.5s ease-out;
}

.selected-time-btn {
  background-color: #007bff;
  color: white;
}

.scrollable-row {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding-left: 2px;
}

.scrollable-row .btn {
  flex: 0 0 auto;
}

.scrollable-row::-webkit-scrollbar {
  height: 4px;
}

.scrollable-row::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 2px;
}


.rounded-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 4px solid #00000012;
  border-radius: 10px;
  overflow: hidden;
}

.rounded-table thead th {
  border-top: none;
}

.rounded-table th,
.rounded-table td {
  border-bottom: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.rounded-table th:first-child,
.rounded-table td:first-child {
  border-left: none;
}

.rounded-table th:last-child,
.rounded-table td:last-child {
  border-right: none;
}

.rounded-table tbody tr:last-child td {
  border-bottom: none;
}

/* Optional: Add zebra striping for rows */
.rounded-table tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

@media (max-width: 576px) {

  /* for mobile screens */
  .responsive-h1 {
    font-size: 1.12rem;
    font-weight: bold;
  }

  .hover-effect {
    min-width: 2rem;
    min-height: 2rem;
    height: 2rem;
  }

}

@media (min-width: 577px) {
  .hover-effect:hover {
    background-color: hsla(0, 0%, 0%, 0.13);
    border-radius: 0.375rem;
  }
}