.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn--primary {
  background: #F2A919;
  color: white;
}
.btn--primary:hover {
  background: #d6920c;
}
.btn--outline {
  border: 1px solid #133E50;
  color: #133E50;
}
.btn--outline:hover {
  background: #133E50;
  color: white;
}

.customer-position aside .logo {
  max-width: 150px;
}

.admin-header img {
  height: 40px;
  width: auto;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background-color: #F4F2EC;
  color: #000;
}
