/* Base table styles */ 
.public-notices-table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-family:inherit;box-shadow:0 2px 6px rgba(0,0,0,0.08);}
.public-notices-table th,.public-notices-table td{padding:0.75rem 1rem;border:1px solid #e5e7eb;}
.public-notices-table thead{background:#004170;color:#fff;}
.public-notices-table tbody tr:nth-child(even){background:#f8fafc;}
.public-notices-table tbody tr:hover{background:#eef2ff;transition:background 0.2s ease;}
/* Buttons */
.pn-btn{display:inline-block;padding:0.35rem 0.75rem;border-radius:0.375rem;background:#0ea5e9;color:#fff;font-size:0.875rem;text-decoration:none;}
.pn-btn.secondary{background:#6b7280;}
.pn-btn:hover{background:#0284c7;}
/* Date column */
.public-notices-table th:nth-child(1),.public-notices-table td:nth-child(1){width:140px;text-align:center;}
/* Notice/other columns center */
.public-notices-table th:nth-child(3),.public-notices-table th:nth-child(4),
.public-notices-table td:nth-child(3),.public-notices-table td:nth-child(4){text-align:center;width:140px;}
/* Viewer row */
.viewer-row td{padding:0;background:#f9fafb;border-top:0;}
/* Mobile */
@media(max-width:640px){
  .public-notices-table thead{display:none;}
  .public-notices-table tr{display:block;margin-bottom:1rem;border:1px solid #e5e7eb;border-radius:0.5rem;box-shadow:0 1px 3px rgba(0,0,0,0.05);}
  .public-notices-table td{display:block;border:none;border-bottom:1px solid #f1f5f9;}
  .public-notices-table td:last-child{border-bottom:none;}
  .public-notices-table td:before{content:attr(data-label);font-weight:600;margin-bottom:0.25rem;color:#475569;display:block;}
}