/* 
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; 
    height: 50px;
    line-height: 25px;
    border-top: 1px solid #cccc;
    padding: 10px 0;
} */

.link {
    cursor: pointer;
}

div {
    display: block;
}


img.blue {
    filter: invert(34%) sepia(60%) saturate(1881%) hue-rotate(183deg) brightness(85%) contrast(81%);
}

.box3.link {
    text-decoration: none;
  }

/* Push page content below status bar/cutout */
html, body {
  padding-top: env(safe-area-inset-top);
  /* optional: ensure at least some spacing */
  padding-top: max(env(safe-area-inset-top), 12px);
}

/* If you have a fixed header/navbar */
header, .app-header, .navbar, .topbar {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
}

body    {
    background-color: whitesmoke;
    align-items: center;
}

/* form {
    background-color: whitesmoke;
} */
.btn, .btn-primary {
    background-color: #e65525 !important; /* Green background */
    color: white !important; /* White text */
    border: none !important;
}

/* Remove or override the background for .btn-link specifically */
.btn-link {
    background-color: transparent !important;
    color: #0d6efd !important; /* or your preferred color */
    border: none !important;
    text-decoration: none !important;
  }

input.form-control:focus {
    border-color: #e65525;
    box-shadow: 0 0 0 0.2rem rgba(230, 85, 37, 0.25);  /* Glowing effect with transparency */
}

.image-container {
    background-color: yellow;
    border-radius: 50%; 
    width: 60px; 
    height: 60px; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.image-container img {
    display: block; 
    width: 40px; 
    height: auto;
}


/* Ensure the navbar brand is a flex container */
.navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Take full width to allow centering */
    padding: 0; /* Remove default padding */
  }

  /* Make the logo image responsive and centered */
  .navbar-brand img {
    max-height: 56px; /* A safe maximum height for desktop */
    height: auto;
    width: auto; /* Let the width adjust automatically */
    object-fit: contain;
    max-width: 90%; /* Prevent the image from taking up too much width */
  }

  /* Adjustments for medium screens */
  @media (max-width: 768px) {
    .navbar-brand img {
      max-height: 50px;
    }
  }

  /* Adjustments for small screens (phones) */
  @media (max-width: 576px) {
    .navbar-brand img {
      max-height: 40px;
      max-width: 80%; /* Even more constrained on mobile */
    }
  }

  .btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: -0.6rem;
  margin-left: -0.6rem;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.undo-text {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #d9534f;
  text-decoration: underline;
  cursor: pointer;
}
