/* Style for WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #000;
  /* Black background for scrollbar track */
  border-radius: 10px;
  /* Rounded scrollbar track */
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  /* White color for scrollbar thumb */
  border-radius: 10px;
  /* Rounded scrollbar thumb */
  border: 2px solid #000;
  /* Black border around the thumb */
}

/* ============================================================================================================================ */

.padding {
  padding: 20px 0px;
  font-size: 20px;
}

.padding2 {
  gap: 10px;
}

input[type="text"] {
  width: 100%;
  max-width: 200px;
  padding: 10px 15px;
  font-size: 16px;
  border: 2px solid #1E90FF;
  border-radius: 25px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input[type="text"]:focus {
  border-color: #00BFFF;
  box-shadow: 0 0 8px #00BFFF;
}

input[type="text"]::placeholder {
  color: black;
  font-style: italic;
  /* text-align: center; */
}

textarea {
  width: 200px;
  max-width: 650px;
  height: 90px;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #1E90FF;
  border-radius: 15px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  resize: vertical;
}

textarea:focus {
  border-color: #00BFFF;
  box-shadow: 0 0 8px #00BFFF;
}

textarea::placeholder {
  color: #999;
  font-style: italic;
}

@media screen and (max-width: 450px) {
  textarea {
    width: 280px;
  }
}


/* From Uiverse.io by Madflows */
.toggle-switch {
  position: relative;
  width: 50px;
  height: 25px;
  --light: #dfdfdf;
  --dark: #28292c;
}

.switch-label {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  border-radius: 12.5px;
  cursor: pointer;
  border: 3px solid var(--light);
}

.checkbox {
  position: absolute;
  display: none;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12.5px;
  transition: 0.3s;
}

.checkbox:checked~.slider {
  background-color: var(--dark);
}

.slider::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: inset 12px -4px 0px 0px var(--dark);
  background-color: var(--light);
  transition: 0.3s;
}

.checkbox:checked~.slider::before {
  transform: translateX(25px);
  background-color: var(--light);
  box-shadow: none;
}


.textcentre {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.round {
  border-radius: 10px;
}

.displaynone{
  display: none;
}

.grey{
  /* filter: grayscale(100%); */
  filter: contrast(10%);
}

.orange{
  color: #ff7700;
  font-weight: 600;
}

.blue{
  color: #007bff;
  font-weight: 600;
}

#main01{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

@media (min-width: 600px) and (max-width: 900px) {
  .fix01 {
    max-width: 370px;
  } 
}