.browse-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.browse-header {
  margin-bottom: 1.5rem;
}

.browse-header h1 {
  margin: 0 0 0.5rem;
}

.browse-nav {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.browse-nav a {
  color: #0066cc;
  text-decoration: none;
}

.browse-nav a:hover {
  text-decoration: underline;
}

.browse-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.browse-controls label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #555;
}

.browse-controls input,
.browse-controls select {
  padding: 0.45rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.9rem;
}

.browse-meta {
  margin-bottom: 0.75rem;
  color: #666;
  font-size: 0.9rem;
}

.browse-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.browse-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.browse-table th,
.browse-table td {
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid #eee;
  text-align: left;
  white-space: nowrap;
}

.browse-table th {
  background: #f5f5f5;
  position: sticky;
  top: 0;
  z-index: 1;
}

.browse-table tbody tr:hover {
  background: #fafafa;
}

.browse-table a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 600;
}

.browse-table a:hover {
  text-decoration: underline;
}

.browse-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.browse-pagination button {
  padding: 0.45rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.browse-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.browse-empty {
  padding: 2rem;
  text-align: center;
  color: #666;
}
