/* Wrapper */
.branch-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}

/* Search & City input (same style) */
#branchSearch,
#cityFilter {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  margin: 0 0 0 5px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fff;
}

/* Optional shared filter style (province dropdown etc.) */
.branch-filter {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 15px;
}

/* Table responsive */
.table-responsive {
  overflow-x: auto;
}

/* Table */
#branchTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Header row (single continuous background) */
#branchTable thead tr {
  background: linear-gradient(135deg, #1fa36b, #1c6fd5);
}

/* Header cells */
#branchTable thead th {
  background: transparent;
  color: #ffffff;
  padding: 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  border-bottom: none;
}

/* Rounded header corners */
#branchTable thead th:first-child {
  border-top-left-radius: 15px;
}

#branchTable thead th:last-child {
  border-top-right-radius: 15px;
}

/* Table body cells */
#branchTable tbody td {
  padding: 12px;
  font-size: 13px;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
}

/* Row hover */
#branchTable tbody tr:hover {
  background-color: #f3f9ff;
  transition: background-color 0.2s ease;
}
