body {
  background: #23272f;
  color: #e0e6ed;
  font-family: "Segoe UI", "Arial", sans-serif;
}
.header, .dashboard-main {
  background: #23272f;
}
.header-overlay {
/*  background: rgba(35,39,47,0.85);
  color: #e0e6ed;
  border-radius: 8px;
  box-shadow: 0 2px 8px #000a;
  padding: 24px 32px; */
}
.dashboard-container {
  background: #23272f;
  border-radius: 12px;
  box-shadow: 0 2px 16px #000a;
  padding: 32px;
}
.dashboard-nav {
  background: #23272f;
  border-bottom: 1px solid #394150;
  padding-bottom: 12px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.user-info {
  color: #e0e6ed;
}
.admin-overview h2, .admin-actions h2 {
  color: #e0e6ed;
  border-bottom: 1px solid #394150;
  padding-bottom: 8px;
}
.overview-grid {
  display: flex;
  gap: 24px;
}
.overview-card {
  background: #2c313a;
  border-radius: 8px;
  box-shadow: 0 1px 6px #0006;
  padding: 20px 24px;
  color: #e0e6ed;
  flex: 1;
}
.overview-icon {
  font-size: 2.5rem;
  color: #f7c873;
  margin-bottom: 8px;
}
.overview-breakdown span {
  display: block;
  color: #b0b6c3;
  font-size: 0.95rem;
}
.actions-grid {
  display: flex;
  gap: 24px;
}
.action-card {
  background: #2c313a;
  border-radius: 8px;
  box-shadow: 0 1px 6px #0006;
  padding: 20px 24px;
  color: #e0e6ed;
  flex: 1;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.action-card:hover {
  box-shadow: 0 4px 16px #000a;
}
.action-icon {
  font-size: 2rem;
  color: #7fd1b9;
  margin-bottom: 8px;
}
.admin-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.admin-tab-btn {
  background: #23272f;
  color: #e0e6ed;
  border: 1px solid #394150;
  border-radius: 6px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.admin-tab-btn.active, .admin-tab-btn:hover {
  background: #394150;
  color: #f7c873;
}
.admin-table {
  background: #2c313a;
  border-radius: 8px;
  box-shadow: 0 1px 6px #0006;
  padding: 16px;
  color: #e0e6ed;
}
.table-header, .table-row {
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #394150;
  padding: 8px 0;
}
.table-header {
  font-weight: bold;
  color: #f7c873;
}
.table-row:last-child {
  border-bottom: none;
}
.user-type-badge {
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.95rem;
  color: #23272f;
}
.user-type-badge.client {
  background: #7fd1b9;
}
.user-type-badge.broker {
  background: #f7c873;
}
.user-type-badge.company {
  background: #e06c75;
}
.status-badge {
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.95rem;
  color: #23272f;
}
.status-badge.active {
  background: #7fd1b9;
}
.status-badge.pending {
  background: #f7c873;
}
.status-badge.inactive {
  background: #e06c75;
}
.action-btn {
  background: #394150;
  color: #e0e6ed;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.2s;
}
.action-btn.edit {
  background: #7fd1b9;
  color: #23272f;
}
.action-btn.delete {
  background: #e06c75;
  color: #fff;
}
.add-btn {
  background: #f7c873;
  color: #23272f;
  border: none;
  border-radius: 4px;
  padding: 8px 18px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s;
}
.add-btn:hover {
  background: #7fd1b9;
  color: #23272f;
}
.logout-btn {
  background: #e06c75;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s;
}
.logout-btn:hover {
  background: #f7c873;
  color: #23272f;
}
