.profile-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.profile-header {
  text-align: center;
  margin-bottom: 40px;
}

.profile-header h1 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.profile-section {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.profile-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  border-bottom: 2px solid #008edf;
  padding-bottom: 8px;
}

.profile-field {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.profile-field:last-child {
  border-bottom: none;
}

.profile-field .label {
  font-weight: 600;
  color: #666;
  min-width: 180px;
}

.profile-field .value {
  color: #333;
  flex: 1;
}

.verified-badge {
  display: inline-block;
  background: #4caf50;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  margin-left: 8px;
}

.status-active {
  color: #4caf50;
  font-weight: 600;
}

.status-inactive {
  color: #f44336;
  font-weight: 600;
}

.permissions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.permissions-list li {
  padding: 8px 12px;
  background: white;
  margin-bottom: 8px;
  border-radius: 4px;
  border-left: 3px solid #008edf;
}

.profile-actions {
  text-align: center;
  margin-top: 40px;
}

.logout-button {
  display: inline-block;
  padding: 12px 48px;
  background: #f44336;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}

.logout-button:hover {
  background: #d32f2f;
}
