.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: var(--color-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-title {
  margin-bottom: 25px;
  font-weight: 300;
}

.main__content-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.main__content-stat-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 4px solid #3498db;
}

.main__content-stat-card.info {
  border-top-color: #95a5a6;
  opacity: 0.7;
}

.main__content-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 10px 0;
}

.main__content-label {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.main__content-button {
  display: block;
  text-align: center;
  background: #3498db;
  color: white;
  text-decoration: none;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.main__content-button:hover {
  background: #2980b9;
}

.main__content-button--disabled {
  background: #ccc;
  cursor: not-allowed;
}
