/* -------------------------------
   Admin Dashboard Styling
   ------------------------------- */

/* Brand Colors */
:root {
  --brand-color: #08395b;
  --brand-light: #fef4ea;
  --brand-accent: #0a4a75;
}

/* Page Background */
body {
  background-color: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

/* Card Styling */
.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.card-header {
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: none;
}

/* Buttons */
.btn {
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Special Brand Button */
.btn-brand {
  background: var(--brand-color);
  color: #fff !important;
}
.btn-brand:hover {
  background: var(--brand-accent);
}

/* Tables */
.table {
  border-radius: 10px;
  overflow: hidden;
}
.table thead {
  background: var(--brand-color);
  color: #fff;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f8f9fc;
}
.table td, .table th {
  vertical-align: middle;
}

/* Alerts */
.alert {
  border-radius: 8px;
  font-weight: 500;
}

/* File Input */
input[type="file"] {
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ddd;
}

/* Dashboard Header */
h2 {
  font-weight: 700;
  color: var(--brand-color);
}

/* Search Input */
form .form-control:focus {
  border-color: var(--brand-color);
  box-shadow: 0 0 0 0.2rem rgba(8,57,91,0.25);
}
