/* === Church Bulletins Front-End Styles — Desktop-Only Layout === */

/* Wrapper */
.cb-list {
  margin: 1.5em 0;
  overflow-x: visible; /* No horizontal scroll */
}

/* Table layout */
.cb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* Table cells */
.cb-table th,
.cb-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
  white-space: normal; /* Allow wrapping */
}

.cb-table th {
  background: #f5f5f5;
  font-weight: 600;
}

/* Actions column */
.cb-actions {
  white-space: normal; /* Allow wrapping */
}

/* Missing file text */
.cb-missing {
  color: #999;
  font-style: italic;
}

/* Inline link styling */
.cb-table a.cb-link {
  font-weight: bold;
  color: #0073aa;
  text-decoration: none;
  margin-right: 12px;
}

.cb-table a.cb-link:hover {
  text-decoration: underline;
  color: #005177;
}

/* Filter dropdown */
.cb-filter {
  margin-bottom: 1em;
}

.cb-filter label {
  font-weight: 600;
  margin-right: 6px;
}

.cb-filter select {
  padding: 4px 8px;
  font-size: 14px;
}