<<<<<<< HEAD
/* Shared CSS styles */
=======
/* Base Settings */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #0e1f2d, #1d364c);
  color: #f4f4f4;
  scroll-behavior: smooth;
}

/* Navigation */
nav {
  background-color: #101e2f;
  padding: 1em;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 2em;
  padding: 0;
  margin: 0;
}

nav a {
  color: #00c2ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffd700;
}

/* Sections */
section {
  padding: 4em 2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

h1, h2 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.5em;
}

p {
  max-width
>>>>>>> 98f19835f4248b60b5bf202cd61d19757c18d919
/* === Notes Dashboard Styles === */
.notes-dashboard {
  background-color: #0c0c0c;
  color: #fdfdfd;
  font-family: 'Georgia', serif;
  padding: 2em;
}

.note-entry {
  background: #1e1e1e;
  border-left: 4px solid #fbbf24;
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 12px;
  box-shadow: 0 0 12px #facc15;
  transition: all 0.3s ease;
}

.note-entry:hover {
  transform: scale(1.01);
  box-shadow: 0 0 16px #fde68a;
}

.note-entry a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: bold;
}
