/* ══════════════════════════════════════
   procurement.css
   doc-table styles for news.php
   ══════════════════════════════════════ */

/* ── Table wrapper ───────────────────── */
.doc-table-wrap {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  overflow: hidden;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

/* ── Table base ──────────────────────── */
.doc-table {
  width: 100%;
  border-collapse: collapse;
}

/* ── Header ──────────────────────────── */
.doc-table thead th {
  background: #f8faf8;
  font-size: .9rem;
  font-weight: 400;
  color: #111;
  padding: .65rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

/* ── Body rows ───────────────────────── */
.doc-table tbody td {
  padding: .65rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: .95rem;
  color: #555;
  vertical-align: middle;
  font-weight: 300;
}
.doc-table tbody tr:last-child td { border-bottom: none; }
.doc-table tbody tr:hover td      { background: #f8faf8; }
.doc-table tbody td:last-child    { text-align: right; white-space: nowrap; }

/* ── Action buttons (view / download) ── */
.doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.doc-btn.view { color: #0284c7; }
.doc-btn.dl   { color: #16a34a; margin-left: -6px; }
.doc-btn:hover { background: #f0f4f8; }

/* ── Search bar ──────────────────────── */
.doc-search-wrap {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
}
.doc-search-form {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: .55rem 1.1rem;
  width: 100%;
  max-width: 560px;
}
.doc-search-form i { color: #9ca3af; flex-shrink: 0; }
.doc-search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .88rem;
  font-family: 'Mitr', sans-serif;
  color: #333;
  background: transparent;
}

/* ── Responsive ──────────────────────── */
@media (max-width: 576px) {
  .doc-table thead th,
  .doc-table tbody td { padding: .55rem .75rem; font-size: .85rem; }
  .doc-search-form    { max-width: 100%; }
}
