/* =========================================
   IslamHere Admin Dashboard Styles
========================================= */

body {
  font-family: system-ui;
  margin: 40px;
  background: #fafafa;
}

h1 {
  margin-bottom: 30px;
}

.top-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

button {
  padding: 8px 14px;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th,
td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

tr:hover {
  background: #f5f5f5;
}

.draft {
  color: #d97706;
  font-weight: bold;
}

/* ======================
   Tabs
====================== */

.tabs {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}

.tab {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
}

.tab.active {
  background: #111;
  color: white;
  border-color: #111;
}

.delete-btn {
  margin-left: 6px;
  background: #dc2626;
  color: white;
  border: none;
}

.delete-btn:hover {
  background: #b91c1c;
}