/* ===== Base Layout & Typography ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #fafafa;
  color: #333;
}

h2 {
  text-align: center;
}


/* ===== Search Input Styling ===== */
#searchInput {
  width: 100%;
  padding: 2px;
  margin-top: 2px;
  font-size: 16px;
  border: 1px solid #aaa;
  border-radius: 4px;
}


/* ===== Table Wrapper for Scrollable Layout ===== */
.table-scrollable {
  overflow-x: auto;
  display: block;
}

.table-scrollable table {
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 100%;
}


/* ===== Table Headers ===== */
.table-scrollable th {
  background-color: #fef200;
  padding: 6px;
  text-align: center;
}


/* ===== Table Row Striping ===== */
.table-scrollable tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table-scrollable tbody tr:nth-child(odd) {
  background-color: #ffffff;
}


/* ===== Text Alignment Utility Classes ===== */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}