html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
  background-color: #f8f9fa;
}

.form-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 2rem;
}

.form-header {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.form-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #0d6efd;
}
.form-floating > label {
  padding-left: 2.5rem;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #6c757d;
  z-index: 5;
}

.btn-primary {
  padding: 0.6rem 2rem;
  /*border-radius: 50px;*/
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 0.125rem 0.25rem rgba(13, 110, 253, 0.5);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 0.75rem rgba(13, 110, 253, 0.4);
}

.step-indicator {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #0d6efd;
  color: white;
  border-radius: 50%;
  line-height: 40px;
  font-weight: bold;
  margin-right: 0.5rem;
}

.invalid-tooltip {
  position: relative;
}

.point-chute-badge {
  min-width: 140px;
}

#alerte {
    justify-content: center;
}

#alerte p {
    margin: 10px;
}

.large-icon {
    font-size: 40px;
}

#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner-overlay {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}