/* ===== Base Styles ===== */
.container {
  display: flex;
  min-height: 100vh;
  background-color: #ffffff; /* white background */
}

.content {
  flex: 1;
  padding: 30px;
  padding-left: 50px; /* ← Adds fixed space between sidebar and content */
  margin-left: 0;     /* ← Ensures no overlap */
}
.content :is(h1, h2, h3, p, a, strong) {
  all: initial; /* Nuclear option to reset */
  display: revert;
  font-weight: revert;
  color: revert;
}

.container p, 
.content p {
  margin-bottom: 1.5em;
}
/* ===== Sidebar ===== */
.sidebar {
  width: 120px;
  background: #f5f5f5; /* colour of sidebar */
  padding: 20px;
  border-right: 1px solid #e0e0e0; /* Lighter border */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  text-align: center; /* Center-align sidebar content */
}

/* Profile Picture */
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #6200ea; /* Purple accent */
  margin: 0 auto 20px; /* Center and add space below */
}

.email::before {
  content: attr(data-user) "@" attr(data-domain);
}

/* Sidebar Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

nav li {
  margin: 15px 0; /* More spacing between tabs */
}

nav a {
  color: white !important;           /* White text */
  background-color: #6200ea;         /* Purple background */
  padding: 8px 12px;                 /* Match your hover padding */
  border-radius: 4px;                /* Rounded corners */
  display: block;                    /* Full-width click area */
  margin: 5px 0;                     /* Space between tabs */
  transition: opacity 0.2s;          /* Smooth hover effect */
}

nav a:hover {
  opacity: 0.9;                      /* Slight fade on hover */
}
/* =

