/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
body {
  font-family: 'Inter', sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Forms */
form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
form input, form select, form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}
form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
form button:hover {
  background: #0056b3;
}

/* Tables (Admin Dashboard) */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.table th, .table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.table th {
  background: #007bff;
  color: #fff;
}
.table tr:hover {
  background: #f1f1f1;
}

/* Action Buttons (Font Awesome ready) */
.actions {
  display: flex;
  gap: 10px;
}
.actions a {
  color: #007bff;
  text-decoration: none;
  font-size: 1.2em;
  transition: color 0.3s;
}
.actions a:hover {
  color: #0056b3;
}
.actions .approve { color: #28a745; }
.actions .reject { color: #dc3545; }
.actions .view { color: #17a2b8; }