@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  background-color: #080202;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px; /*1200*/
  margin: 0 auto;
}

.material-icons {
  color: #909090;
}

.center-align {
  color: #909090;
}

/* Custom styles for tabs */
.tabs .tab a {
  color: #9e9e9e;
  background-color: transparent;
  transition: all 0.3s ease;
}
.tabs .tab a:hover {
  color: #ffa800;
  background-color: transparent;
}
.tabs .tab a.active {
  color: #ffa800 !important;
  background-color: transparent !important;
  border-bottom: 2px solid #ffa800 !important;
}
.tabs .indicator {
  background-color: #ffa500 !important;
}

/* Custom styles for products */
.products-container {
  padding: 1rem;
  max-height: 500px;
  overflow-y: auto;
}
.products-container .row {
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.products-container .row:hover {
  background-color: #f5f5f5;
}
.products-container input[type="number"] {
  width: 100%;
  margin-bottom: 0;
}
.products-container .switch {
  margin-top: 0;
  margin-bottom: 0;
}

/* Custom styles for selection container */
.selection-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  color: #666;
}
.selection-container:hover {
  background-color: #f5f5f5;
  border-color: #9e9e9e;
}
.selection-container.selected {
  background-color: #4caf50;
  border-color: #4caf50;
  color: white;
}
.selection-container i {
  margin-right: 8px;
  font-size: 20px;
}
.selection-container.selected i {
  color: white;
}

/* Styles for password toggle span */
#toggle-password {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: #909090;
  transition: all 0.3s ease;
}

#toggle-password:hover {
  color: #ffa800;
}

#toggle-password.active {
  color: #ffa800;
}

/* Loadin spinner */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-text {
  margin: 0;
  color: #666;
  font-size: 1.2rem;
}

.spinner-container p {
  margin-top: 20px;
  color: #666;
}