body {
    font-family: 'Inter';
    background-color: #5454D1;
    margin: 0;
    padding: 0;
    overflow: hidden;
    place-items: center;
    align-items: center;
    height: 100vh;
    display: grid;
}

.preloader{
    text-align: center;
}

.preloader-image-container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  text-align: center;
  align-items: center;
}

.logo-image {
  width: auto;
  height: 120px;
}

.name-image {
  width: auto;
  height: 45px;
}

.name-container {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 45px;
  margin: 0 auto;
}

.copyright-symbol {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 25px; /* Adjust size as needed */
}

.slogan-text {
  color: #fff;
  font-size: 20px;
}

.bold-text {
  font-weight: bold !important;
}

#percentage-indicator {
  /* General Styling */
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #fff; /* Add border */
  border-radius: 10px;
}

#percentage-indicator::-webkit-progress-bar {
  background-color: #fff; /* For Webkit browsers */
  border-radius: 10px;
}

#percentage-indicator::-webkit-progress-value {
  background-color: #5454D1; /* For Webkit browsers */
  border-radius: 10px;
}

#percentage-indicator::-moz-progress-bar {
  background-color: #5454D1; /* For Firefox */
  border-radius: 10px;
}

.loading-text {
  color: #fff;
  font-size: 15px;
}