.dashboard-container {
  margin-left: 240px;
  flex: 1;
  width: calc(100% - 240px);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--color-off-white);
}

.topbar {
  background: white;
  padding: 15px 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.topbar-badge {
  background: #3498db;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-left: 10px;
}

.main__content {
  padding: 30px;
}
.main__content-header {
  margin-bottom: 25px;
}
.main__content-header h1 {
  font-size: 1.8rem;
  color: #2c3e50;
}
.main__content-header p {
  color: #7f8c8d;
}

/* Tabela e Container */
.main__content-table {
  background: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

.main__content-admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
.main__content-admin-table th {
  background: #f8f9fa;
  padding: 15px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #95a5a6;
  letter-spacing: 0.5px;
}

.main__content-admin-table td {
  padding: 15px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
}
.main__content-admin-table tbody tr:hover {
  background-color: #f9fbff;
}

.badge-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Botão de Ação */
.btn-action {
  background: #3498db;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}

.btn-action:hover {
  background: #2980b9;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(52, 152, 219, 0.3);
}
