/* Georgia Font Family */
@font-face {
  font-family: 'Georgia';
  src: url('fonts/georgia.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Georgia';
  src: url('fonts/georgiab.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Georgia';
  src: url('fonts/georgiai.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Georgia';
  src: url('fonts/georgiaz.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

html,
body {
  overflow-x: hidden;
  /* Disables horizontal scrolling */
  width: 100%;
  position: relative;
}

body {
  background-color: #f6f6f5;
  color: #535353;
  font-family: 'Georgia', serif;
}

#loginDiv {
  width: 100cw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background-image: url("/sites/mannaPacificWebsite/imgs/loginBg.png");
  background-size: cover;
}

.lang-btn-group {
  display: flex;
  width: fit-content;
  margin-top: 25px;
  font-size: 18px;
  margin-left: auto;
}

.lang-btn-left {
  width: 75px;
  border-radius: 46px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  cursor: pointer;
}

.lang-btn-right {
  width: 75px;
  border-top-right-radius: 46px;
  border-bottom-right-radius: 46px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  cursor: pointer;
}

.whiteBg {
  background-color: #fff;
  border-color: #fff;
}

.grayBg {
  background: #13A8A2;
  color: #fff;
  border-color: gray;
}

label {
  font-weight: bold;
}

.roundRadius {
  border-radius: 46px;
}

::placeholder {
  color: gray;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: gray;
}

.main {
  width: 100vw;
  height: calc(100vh - 150px);
  overflow: auto;
  padding-bottom: 100px;
}

#topNav {
  background: #fff;
}

.bottomNav {
  background: #fff;
  margin-top: 2px;
  padding-bottom: 5px;
  border-top: 1px solid #858585;
  border-bottom: 1px solid #858585;
}

.bottomIcon {
  height: 40px;
  line-height: 0px;
}

.bottomNavBtn {
  width: 20% !important;
  vertical-align: top;
  line-height: initial;
  text-align: center;
  font-size: 10pt !important;
  padding-left: 5px;
  padding-right: 5px;
  height: 72px;
  padding-top: 5px;
}

.bottomNavBtn:nth-child(2),
.bottomNavBtn:nth-child(3),
.bottomNavBtn:nth-child(4),
.bottomNavBtn:nth-child(5) {
  /* border-left: 1px solid #858585; */
  position: relative;
  padding-left: 1px;
  /* This creates space for the gradient */
}

.bottomNavBtn:nth-child(2)::before,
.bottomNavBtn:nth-child(3)::before,
.bottomNavBtn:nth-child(4)::before,
.bottomNavBtn:nth-child(5)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(to bottom,
      transparent 0%,
      #858585 40%,
      #858585 60%,
      transparent 100%);
}

.bottomNavBtn a {
  color: #535353;
  font-size: 10pt !important;
}

a {
  text-decoration: none;
  color: #535353;
}

.chart-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  /* Half-circle aspect ratio */
  margin: 0;
  overflow: hidden;
}

.chart-container canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
}

/* Slider Container */
.slider-container {
  padding: 12px 0;
  /* Give space for thumb */
  position: relative;
}

/* Slider Track */
.custom-slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  background: transparent;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* Track Styling */
.custom-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  background: #D9D9D9;
  border-radius: 4px;
  position: relative;
  top: 1px;
  /* Slight adjustment to align perfectly */
}

.custom-slider::-moz-range-track {
  width: 100%;
  height: 8px;
  background: #D9D9D9;
  border-radius: 4px;
}

/* Thumb Styling - Perfectly centered */
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 1px solid #ddd;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -1px;
  /* Fine-tune vertical alignment */
}

.custom-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 1px solid #ddd;
  position: relative;
  top: 1px;
  /* Adjust for Firefox */
}

/* Progress Fill */
.custom-slider {
  --range-progress: 0%;
}

.custom-slider::-webkit-slider-runnable-track {
  background: linear-gradient(to right, #13A8A2 0%, #13A8A2 var(--range-progress), #D9D9D9 var(--range-progress), #D9D9D9 100%);
}

.custom-slider::-moz-range-track {
  background: linear-gradient(to right, #13A8A2 0%, #13A8A2 var(--range-progress), #D9D9D9 var(--range-progress), #D9D9D9 100%);
}

.submitBtn {
  background-color: #13A8A2;
  border-radius: 25px;
  color: #fff;
  width: 100%;
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 25px;
}

.logoutBtn {
  background-color: #CA0000;
  color: #fff;
  border-radius: 25px;
  padding: 5px 12px;
  width: 80%;
  display: block;
  margin: 0 auto;
}

#fullLoadingOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  transition: 0.5s;
  text-align: center;

  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  display: none;
}

.fitnessGrid {
  color: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 150px;
  margin-left: 2px;
  background-repeat: no-repeat;
  background-position: right;
  background-position-y: bottom;
  background-size: contain;
}

.sortingBtn {
  background-color: #13A8A2;
  border-radius: 46px;
  padding: 5px 8px;
  color: #fff;
}

.score {
  color: #CB6012;
  font-size: 18px;
  font-weight: bold;
}

.name {
  color: #000000;
  font-size: 18px;
  font-weight: bold;
}

.ranking {
  background-color: #FFE2DA;
  border-radius: 25px;
}


.modal-image-container {
  text-align: center;
  display: flex;
}

.modal-image {

  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

