@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');
body {
  font-family: 'Quicksand', Arial, sans-serif;
  background: #fffbe6;
  color: #222;
}
.navbar, .navbar-light, .navbar-brand {
  background: #FFD600 !important;
  color: #222 !important;
  font-weight: bold;
  letter-spacing: 1px;
}
.navbar .navbar-brand:before {
  content: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/1f41d.svg');
  width: 28px; height: 28px; display: inline-block; margin-right: 8px; vertical-align: middle;
}
.card, .bg-white, .table {
  border-radius: 18px !important;
  box-shadow: 0 2px 12px 0 #ffd60033;
}
.card-header, .table thead tr {
  background: #FFD600 !important;
  color: #222;
  font-weight: bold;
  border-top-left-radius: 18px !important;
  border-top-right-radius: 18px !important;
}
.btn-primary, .btn-green {
  background: #FFD600 !important;
  color: #222 !important;
  border: none;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #ffd60033;
  transition: background 0.2s;
}
.btn-primary:hover, .btn-green:hover {
  background: #ffb300 !important;
  color: #fff !important;
}
.btn-danger {
  background: #ff7043 !important;
  color: #fff !important;
  border-radius: 12px;
}
.table-striped tbody tr:nth-of-type(odd) {
  background: #fffde7;
}
.table-bordered th, .table-bordered td {
  border: 1.5px solid #FFD600 !important;
}
.form-title, h3, h4 {
  color: #ffb300;
  font-weight: bold;
  letter-spacing: 1px;
}
input[type="text"], input[type="password"], select, input[type="file"] {
  border-radius: 10px !important;
  border: 1.5px solid #FFD600 !important;
  background: #fffde7;
}
input:focus, select:focus {
  border-color: #ffb300 !important;
  box-shadow: 0 0 0 2px #ffd60055;
}
.alert-success {
  background: #fffde7;
  color: #222;
  border: 1.5px solid #FFD600;
  border-radius: 10px;
  font-weight: bold;
}
::-webkit-scrollbar-thumb { background: #FFD600; border-radius: 8px; }
::-webkit-scrollbar { background: #fffbe6; } 