@import url("https://fonts.cdnfonts.com/css/bitter");

body {
  /* First background layer - BG.gif */
  /* background-image: url("../assets/images/map.jpeg");*/
  background-size: 100% auto; /* Initial background size, 100% width, auto height */
  background-position: center top; /* Center horizontally, top vertically */
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

@media (max-width: 500px) {
  body {
    background-size: auto 500px; /* Minimum 350px width, auto height */
  }
}

.topbar {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff0062),
    to(#442e5a)
  );
  background: linear-gradient(to right, #ff0062 0%, #442e5a 100%);
}

.rounded {
  border-radius: 6px !important;
}

h4 {
  font-family: "Bitter", sans-serif;
  padding-bottom: 25px;
}

.midbox {
  max-width: 450px;
}

a {
  padding: 2px;
  padding-left: 3px;
  padding-right: 3px;
  border-radius: 3px;
  color: black;
  -webkit-transition:
    background-color 0.3s,
    color 0.3s;
  transition:
    background-color 0.3s,
    color 0.3s; /* Adding a transition for smooth effect */
}

/* Hover effect styles */
a:hover {
  background-color: #e5004b;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff0062),
    to(#442e5a)
  );
  background-image: linear-gradient(to right, #ff0062, #442e5a);
  color: white;
  //font-weight: bold;
}

.headerbg {
  background-image: url("../assets/images/_f947c0a4-e28a-4798-843e-c12d9620c400.jpeg");
  background-size: cover; /* 'cover' will scale the image to cover the entire container */
  background-repeat: no-repeat; /* 'no-repeat' will prevent the image from repeating */
  background-position: center center;
  height: 100px;
}

#main {
  max-width: 600px;
}

input:checked + .slider {
  background-color: #e5004b;
}

input:checked + .slider .green {
  background-color: #198754;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #e5004b;
  box-shadow: 0 0 1px #e5004b;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

input[type="checkbox"] {
  background-color: #fff !important;
  border: 1px solid #fff;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #e5004b;
}

input:checked + .slider .green {
  background-color: #198754;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #e5004b;
  box-shadow: 0 0 1px #e5004b;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
