/* region note section */
.region-note {
  font-size: 10px;
  color: #333;
  margin-top: 30px;
}

.region-note h3 {
  font-size: 10px;
  margin-bottom: 8px;
}

/* footer-note */
.footer-note {
  text-align: center;
  font-size: 10px;
  color: gray;
  margin-top: 10px;
}

.footer-separator {
  margin-top: 40px;
  border: none;
  border-top: 1px solid #ccc;
}

/* submit page form styling */
.auth-nav {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logout-form {
  display: inline;
}

.listing-form {
  font-size: 14px;
}

.form-field {
  margin-bottom: 10px;
}

.image-block {
  margin-bottom: 10px;
}

.image-block img {
  max-width: 150px;
  display: block;
  margin-bottom: 5px;
}

.save-button {
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
}

.hscroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* for smoother scrolling on iOS */
}

/* === Table Styles === */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  min-width: 800px;
}

.table th,
.table td {
  border: 1px solid #ddd;
  padding: 1px,1px;
  text-align: left;
}

.table thead {
  background-color: #cce5ff;
  color: #003366;
  font-weight: bold;
}

.table tbody tr:nth-child(even) {
  background-color: #cce6ff;
}

.table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.table tr:hover {
  background-color: #e6f2ff;
}


/* For tablets and smaller */
@media (max-width: 768px) {
  .content {
    padding: 10px;
  }
