body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background: linear-gradient(135deg, #d8ffe9, #ffffff);
  animation: bgMove 12s infinite alternate linear;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* HEADER */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e3e3e3;
}

.logo {
  height: 38px;
  width: auto;
}

.top-bar h1 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

/* MAIN LAYOUT */
.main {
  max-width: 900px;
  margin: 15px auto;
  padding: 12px;
}

/* CARDS */
.search-card, .results-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.07);
  border: 1px solid #eaeaea;
  margin-bottom: 18px;
  animation: slideFade 0.6s ease forwards;
  transform: translateY(12px);
  opacity: 0;
}

@keyframes slideFade {
  to { transform: translateY(0); opacity: 1; }
}

/* INPUTS */
label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input, button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  border: 1px solid #cfd9df;
}

button {
  background: #00c980;
  border: none;
  font-weight: 600;
  color: white;
  cursor: pointer;
  margin-top: 8px;
  transition: 0.3s;
}
button:active {
  transform: scale(0.97);
}
button:hover {
  filter: brightness(.92);
}

.note { 
  font-size: 12px; 
  color: #666; 
  margin-top: 5px;
}

/* RESULTS */
.results-card h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.results-card h2 span {
  background: #00c98020;
  padding: 4px 8px;
  border-radius: 6px;
}

/* TABLE */
.table-container { 
  overflow-x: auto; 
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th, td { 
  padding: 9px; 
  border-bottom: 1px solid #eee; 
  white-space: nowrap;
}

thead th { 
  font-size: 11px; 
  text-transform: uppercase; 
  color: #777;
}

.no {
  color: #777; 
  padding: 14px; 
  text-align: center;
}

/* STATUS COLORS */
.status.approved { color: #059669; font-weight: 600; }
.status.pending { color: #c28a12; font-weight: 600; }
.status.rejected { color: #d12b2b; font-weight: 600; }

/* MOBILE RESPONSIVE TWEAKS */
@media(max-width: 480px) {
  .top-bar { padding: 12px; gap: 6px; }
  .logo { height: 30px; }
  .top-bar h1 { font-size: 17px; }

  .search-card, .results-card {
    padding: 16px;
    border-radius: 12px;
  }

  input, button { font-size: 15px; }

  table { font-size: 13px; }
  th, td { padding: 7px; }
}
