/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f2f2f2;
  padding: 1rem;
  color: #333;
}

/* UNIVERSAL PAGE CONTAINER */
.container {
  width: 95%;
  max-width: 480px;
  margin: 2rem auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* HEADINGS */
h1, h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* FORMS */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
  width: 100%;
  padding: 0.75rem;
  margin: 0.6rem 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

/* BUTTONS */
button,
input[type="submit"] {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.8rem;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
  background: #3e9a43;
}

/* LINKS */
a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* RESPONSIVE SPACING */
@media (max-width: 600px) {
  .container {
    padding: 1rem;
    margin: 1rem auto;
  }

  button,
  input[type="submit"] {
    font-size: 1rem;
  }
}
.dashboard-container {
  width: 95%;
  max-width: 600px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.dashboard-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #4a3f7a;
  font-weight: 700;
}

.section-card {
  background: #fdf7ff;
  padding: 1rem;
  border-radius: 14px;
  margin: 1rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.section-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #5a4b8a;
}

.section-card a {
  display: block;
  padding: 0.6rem;
  margin: 0.4rem 0;
  background: #e8f4ff;
  border-radius: 10px;
  text-decoration: none;
  color: #004c8c;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.section-card a:hover {
  background: #d9ecff;
}
