/* profile.css - styles for profile.php */

/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f9fafb;
  --card: #ffffff;
  --accent: #2563eb;
  --muted: #6b7280;
  --text: #111827;
  --border: #e5e7eb;
  --radius: 8px;
  --padding: 1rem;
  --max-width: 800px;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: var(--padding);
  width: 100%;
  max-width: var(--max-width);
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.profile img {
  border-radius: 50%;
  border: 3px solid var(--border);
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-info h2 {
  font-size: 1.5rem;
  margin: 0;
}

.profile-info p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0.5rem 0 0;
  line-height: 1.5;
}