@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0d16;
  color: #fff;
}

.img-max {
    max-width: 200px;
    height: auto;
  }

  .spacer1 {
    padding-top: 200px;
    padding-bottom: 200px;
}



.form-check-input:checked{
  background-color: green !important;
  border: 0;
}
.form-check-input:focus, .label::after, label.form-check-label:focus, .form-check-input::after, .form-check-input:not(:disabled):not(.disabled):active:focus {
  color: black;
  outline: 0;
  border: 0;
  box-shadow: 0 0 0 0.1rem green !important;
}

/* to put last item out to the right */
.sticky {
            display: flex;
            justify-content: flex-end;
        }
        li:last-child {
           margin-left: auto;
        }

        
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

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

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

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

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

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

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

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

.gray-text {
  color: #fff;
  opacity: 0.4;
}

header {
  display: flex;
  align-items: center;
  background: #232638;
  height: 90px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 0;
}

.header-logo {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-left: 32px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-logo-img {
  width: 140px;
  height: auto;
  display: block;
  margin-left: 32px;
  margin-right: 8px;
}

.header-tabs {
  display: flex;
  gap: 16px;
  margin-left: 32px;
  height: 100%;
  align-items: end;
}

.header-tab {
  background: #32395a;
  color: #a6adc8;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px 6px 0 0;
  padding: 0 18px;
  text-align: center;
  min-width: 120px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1.2;
  letter-spacing: 0.5px;
  box-shadow: none;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  margin-top: 11px;
}

.header-tab.active {
  background: #5ea1fa;
  color: #fff;
}

.header-tab:not(.active):hover {
  background: #3a4266;
  color: #e0e6f6;
}

.custom-card {
  padding: 16px 24px;
  border-radius: 16px;
  background-color: #121524;
  transform: translateZ(0);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, .1)) drop-shadow(0 0 10px rgba(255, 255, 255, .1));
  -webkit-filter: drop-shadow(0 0 15px hsla(0, 0%, 100%, .1)) drop-shadow(0 0 10px hsla(0, 0%, 100%, .1));
}

#globe .scene-container {
  margin: 0 auto;
}

.table-dark {
  background-color: #121524 !important;
  color: #fff;
}

.table-dark thead th {
  background-color: #121524 !important;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.table-dark tbody td {
  background-color: #121524 !important;
  border-top-color: rgba(255, 255, 255, 0.1);
}

footer {
  background-color: #121524;
}

@media (max-width: 768px) {
  .header-logo-img { display: none !important; }
  .header-tab {
    font-size: 0.85rem !important;
    padding: 0 8px !important;
    min-width: 70px !important;
    height: 44px !important;
  }
}

.custom-container {
  margin-left: 212px;
  margin-right: 212px;
  width: auto;
}
@media (max-width: 1200px) {
  .custom-container {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 768px) {
  .custom-container {
    margin-left: 8px;
    margin-right: 8px;
  }
}