body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f7fa;
  margin: 0;
  padding: 0;
}

header {
  background: linear-gradient(to right, #5De0e6, #004aad);
  color: white;
  padding: 20px;
  text-align: center;
}

.container {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #333;
}

.request-form,
.admin-dashboard {
  margin-bottom: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

form input,
form select,
form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background: #49a09d;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

form button:hover {
  background: #3a7c78;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.status {
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
}

.status.pending {
  background: #ffecb3;
  color: #d17b00;
}

.status.approved {
  background: #d0f0c0;
  color: #2e7d32;
}

.status.rejected {
  background: #ffcccc;
  color: #b00020;
}

button.approve {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
}

button.reject {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 10px;
  color: #888;
  background: #fff;
  border-top: 1px solid #ccc;
}

