.header-user {
  color: #aaa;
  font-size: 14px;
  margin-right: 15px;
}

.header-user strong {
  color: white;
}

.btn-header {
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.btn-header-primary {
  background-color: #667eea;
  color: white;
}

.btn-header-primary:hover {
  background-color: #5568d3;
}

.btn-header-danger {
  background-color: #dc3545;
  color: white;
}

.btn-header-danger:hover {
  background-color: #c82333;
}

.dash-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 10px;
}

.content-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  max-width: 600px;
  width: 100%;
}

.content-card h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.btn-primary {
  background-color: #667eea;
  color: white;
}

.btn-primary:hover {
  background-color: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-danger:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.feature-list {
  list-style: none;
  margin: 20px 0;
}

.feature-list li {
  padding: 12px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  color: #333;
}

.feature-list li:before {
  content: "✓ ";
  color: #667eea;
  font-weight: bold;
  margin-right: 8px;
}

.user-info {
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.user-info-label {
  color: #666;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.user-info-value {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  word-break: break-all;
}

.info-box {
  background: #e7f3ff;
  border-left: 4px solid #2196f3;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
}

.info-box strong {
  display: block;
  color: #1976d2;
  margin-bottom: 5px;
}

.dashboard-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  max-width: 500px;
  width: 100%;
}

.dashboard-card h2 {
  color: #333;
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
}

@media (max-width: 600px) {
  .dashboard-card {
    padding: 25px;
  }

  .dashboard-card h2 {
    font-size: 22px;
  }

  .content-card {
    padding: 25px;
  }

  .button-group {
    flex-direction: column;
  }
}
