@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

/* Consolidated Body Styles: 
  The last body block in the original CSS is the most comprehensive for a login-focused view 
  (display: flex, height: 100vh, etc.). This version keeps the most common background color 
  but removes the login-specific centering that would break non-login pages, and 
  restores the padding-bottom needed for the fixed footer. 
*/

.large-checkbox {
  transform: scale(1.4);
}

a {
  text-decoration: none;
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 1rem 0;
  z-index: 1030;
}

/* NEW: Styles for the Shepherd.js tour */
.shepherd-element.shepherd-theme-dark {
  background-color: white;
  color: black;
  border-radius: 0.5rem;
}

.shepherd-element.shepherd-theme-dark .shepherd-header {
  background: #212529; /* Even darker header */
  padding: 0.75rem 1rem;
}

.shepherd-element.shepherd-theme-dark .shepherd-text {
  padding: 1rem;
  font-size: 1rem;
}

.shepherd-element.shepherd-theme-dark .shepherd-button {
  background: #0d6efd; /* Bootstrap primary blue */
  color: white;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
}

.shepherd-element.shepherd-theme-dark .shepherd-button:hover {
  background: #0b5ed7;
}

.shepherd-element.shepherd-theme-dark
  .shepherd-button.shepherd-button-secondary {
  background: #6c757d; /* Bootstrap secondary grey */
}

.shepherd-element.shepherd-theme-dark
  .shepherd-button.shepherd-button-secondary:hover {
  background: #5c636a;
}

.maintenance-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.clickable-row {
  cursor: pointer;
}

.cancelled-row {
  text-decoration: line-through;
  color: #6c757d;
}

.login-body {
  /* Main body background color and centering for login screens */
  background-color: #a71916;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
  padding: 20px 0;
}

.login-card {
  width: 100%;
  max-width: 400px;
}

.logo-container {
  margin-bottom: 20px;
  max-width: 250px;
  width: 100%;
}

.logo-container img {
  width: 100%;
  height: auto;
}

.social-buttons .btn {
  flex-grow: 1;
}

/* WhatsApp Phone Input Group Tweaks (Deduplicated) */
.input-group > .form-floating:not(:last-child) > .form-control {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.input-group > .form-floating:not(:first-child) > .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Fix for select padding inside input group (Deduplicated) */
.input-group .form-select {
  padding-left: 0.75rem;
}
