body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
}

.icon {
  border-radius: 50%;
  width: 64px;
}

#container {
  max-width: 400px;
  margin: 100px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 100%;
  height: auto;
  text-align: center; /* Centers the image horizontally */
}

.logo-image {
  max-width: 75%; /* Ensures the image doesn't exceed the container width */
  height: auto; /* Maintains the image's aspect ratio */
  margin-bottom: 20px;
}

input[type='text'] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.btn {
  width: 100%;
  padding: 10px;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  z-index: 10;
}

.success {
  background-color: #4caf50;
}

.success:hover {
  background-color: #45a049;
}

.success:active {
  background-color: #3e8e41;
}

.danger {
  background-color: #f44336;
}

.danger:hover {
  background-color: #da190b;
}

.danger:active {
  background-color: #ac1b16;
}

.page {
  text-align: center;
}

.hidden {
  display: none;
}

/* LOADING ANIMATION */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #4caf50 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.box-container {
  display: flex;
  justify-content: center;
  /* Centers the boxes horizontally */
  gap: 20px;
  /* Gap between the boxes */
  padding: 0px 0;
  /* Some padding on top and bottom for aesthetics */
}

.rounded-box {
  width: 75px;
  /* Adjust as needed */
  padding: 15px;
  margin: 10px auto;
  /* Center the box and provide space above for shadow */
  background-color: #f5f5f5;
  border-radius: 10px;
  /* Rounded corners */

  /* Bottom shadow */
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}

.box-value {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #4caf50;
  margin: 10px 0 10px 0;
}

/* CHARGING ANIMATION */
.charcing-animation-container {
  position: relative;
  width: 200px;
  height: 200px;
}

.anime-div {
  position: absolute;
  top: 45%;
  width: 100%;
  height: 100%;
}
.fade-item {
  position: absolute;
  top: 30%;
  width: 100%;
}

.anime-div {
  position: absolute;
  top: 35px !important;
  left: 50%;
  margin: calc(4px - 2em) -2em;
  border: solid 0 #fff;
  border-width: 8px 0px 0;
  padding: calc(2em - 4px) 2em;
  border-radius: 50%;
  box-shadow: inset 0 2px 5px #fff;
  filter: blur(2px) drop-shadow(0 0 3px #4caf50) drop-shadow(0 0 5px #4caf50)
    drop-shadow(0 0 5px skyblue);
  animation: a 3s linear infinite;
  z-index: 1;
}

@keyframes a {
  to {
    transform: rotate(1turn);
  }
}

.fade-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fade-item {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
}

.live-animation-container {
  position: relative;
  height: 300px;
}

/* ALERT STYLES */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  display: block;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}




