/* COLORS */
:root {
  --lime-green: #b6e7b0;
  --seafoam-blue: #a0e7e5;
  --white: #ffffff;
  --text: #333;
}

/* BASE STYLES */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--text);
}

.container {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 250px;
  background-color: var(--lime-green);
  padding: 2rem;
  border-radius: 0 2rem 2rem 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.sidebar p {
  font-size: 1rem;
}

/* MAIN CONTENT */
.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

/* HEADER NAV */
.header {
  background-color: var(--seafoam-blue);
  padding: 1rem 2rem;
  border-radius: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.header a {
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border-radius: 999px;
  transition: background-color 0.3s;
}

.header a:hover {
  background-color: var(--lime-green);
}

/* CONTENT */
.content {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-radius: 0 0 2rem 2rem;
    text-align: center;
  }

  .header {
    justify-content: center;
  }
}
