html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
.text-justify-custom {
  text-align: justify;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


.card-dark {
  background-color: #0d1c2596;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(59, 128, 232, 0.466),
    0 2px 4px -1px rgba(53, 90, 201, 0.784);
  padding: 1.5rem;
  text-align: center;
}

.color-miles {
  color: hwb(192 9% 2%);
}

.color-steps-per-mile {
  color: #3b82f6;
}

.color-steps-per-minute {
  color: #22c55e;
}

.color-minutes-for-mile {
  color: #f7bc55;
}

/* Custom styles for the cards */
.card-dark {
  background-color: #343a40;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.color-miles {
  color: #28a745;
  /* Green color */
}

.color-steps-per-mile {
  color: #17a2b8;
  /* Teal color */
}
.disclaimer-container {
  background-color: #e74c3c;
  color: white;
  padding: 15px;
  margin: 10px auto; /* This 'auto' margin might be part of the issue on desktop for centering within a non-full-width parent */
  border-radius: 5px;
  box-sizing: border-box;
}

.disclaimer-text {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Media query for smaller screens (e.g., mobile phones) */
@media (max-width: 600px) {
  .disclaimer-container {
      max-width: 95%;
      padding: 10px;
  }
  .disclaimer-text {
      font-size: 14px;
      line-height: 1.3;
  }
}

/* Media query for larger screens (desktop) */
@media screen and (min-width: 768px) {
.disclaimer-container { /* <--- CORRECTED CLASS NAME HERE */
    width: 100%;
    max-width: 100%; /* Ensure no other max-width is limiting it */
    margin: 0; /* Remove auto margin on desktop to ensure full width, if not desired to be centered */
    padding: 15px; /* Re-apply base padding or adjust as needed */
}
}