/* Custom background gradient */
.bg-gradient-custom {
  background: linear-gradient(135deg, #ffc107 0%, #ffffff 100%);
}

/* Custom theme color (yellow) */
.text-theme {
  color: #000000 !important;
}


/* Button custom yellow theme */
.btn-theme {
  background-color: #ffc107 !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-theme:hover {
  background-color: #e0ac07 !important;
}

/* Card styling */
.login-card {
  max-width: 320px;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 1.5rem;
}

/* Input focus yellow outline */
.form-control:focus {
  border-color: #ffc107 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Error states */
.form-control.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

/* Error alert styling */
.alert-danger {
  border-radius: 0.75rem;
  border: 1px solid #f5c6cb;
  background-color: #f8d7da;
  color: #721c24;
}

/* Loading state */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Shake animation for errors */
.shake {
  animation: shake 0.5s ease-in-out;
}
/* Custom styles */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #dee2e6;
  z-index: 1000;
}

.nav-item {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0;
}

.nav-link {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.8rem;
}

.nav-link.active {
  color: #ffc107;
}

.nav-icon {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.content-area {
  padding-bottom: 80px; /* Space for bottom nav */
  min-height: 100vh;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.dashboard-card {
  border-radius: 1rem;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.loading {
  opacity: 0.7;
  pointer-events: none;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Responsive design */
@media (max-width: 576px) {
  .login-card {
    margin: 0 1rem;
    padding: 1.5rem !important;
  }}