.menu-list a {
  margin: 10px 15px;
  letter-spacing: .2rem;
}

/* General Reset */
.app-content {
  font-family: 'Roboto', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Login Page Container */
.login-container {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
}

/* Form Elements */
.form-control {
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

/* Custom Checkbox */
.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid #ced4da;
}

.form-check-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}

/* Links */
.form-text a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s;
}

.form-text a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.row {
  overflow-y: auto;
  max-height: calc(100vh - 20px);
}

/* Responsive */
@media (max-width: 576px) {
  .login-container {
      padding: 1.5rem;
  }
}


.user-dropdown {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #dee2e6;
}

.user-icon:hover {
  background-color: #dee2e6;
}

.dropdown-menu {
  min-width: 160px;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dropdown-item {
  padding: 8px 20px;
}

.dropdown-item i {
  margin-right: 8px;
  width: 20px;
}
