body {
  margin-top: 2rem;
  background: #f9f9f9;
}

.container {
  max-width: 1400px !important;
  width: 95% !important;
}

.dashboard-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.header-brand {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-logo {
  max-width: 60%;
  height: auto;
  margin-bottom: 2rem;
}

.header-logout {
  flex-shrink: 0;
}

/* Three-column grid on desktop */
.dashboard-columns {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 960px) {
  .dashboard-columns {
    grid-template-columns: 1fr;
  }
}

.row-section {
  margin-bottom: 3rem;
  min-width: 0;
  overflow-x: auto;
}

.row-section h5 {
  border-bottom: 2px solid #33c3f0;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Review cards */
.review-stream {
  max-height: 500px;
  overflow-y: auto;
}

.review-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.review-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.review-company {
  background: #33c3f0;
  color: #fff;
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  font-size: 0.8rem;
}

.review-stars {
  color: #f5a623;
}

.review-date {
  color: #999;
}

.review-text {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.no-data {
  color: #999;
  font-style: italic;
}

/* Sortable table */
.sortable th {
  cursor: pointer;
  user-select: none;
}

.sortable th:hover {
  background: #f0f0f0;
}

/* Login */
.login-box {
  max-width: 400px;
  margin: 10rem auto;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}

.login-logo {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 0 auto 1.5rem;
}

.error {
  color: #e74c3c;
  text-align: center;
}
