/* Base (same as home page) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, Arial, sans-serif;
}

body {
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Layout */
.notes-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */

.sidebar {
  width: 240px;
  background: #020617;
  border-right: 1px solid #1e293b;
  padding: 20px;
}

.sidebar h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
}

.sidebar a:hover {
  color: #38bdf8;
}

/* Main Content */

.notes-main {
  flex: 1;
  padding: 40px;
}

/* Search */

.search-box {
  margin-bottom: 25px;
}

.search-box input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #1e293b;
  background: #020617;
  color: #e5e7eb;
  font-size: 14px;
}

.search-box input:focus {
  outline: none;
  border-color: #38bdf8;
}

/* Notes Cards */

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.note-card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 15px;
  transition: 0.2s;
}

.note-card:hover {
  border-color: #38bdf8;
  transform: translateY(-2px);
}

.note-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.note-card p {
  font-size: 13px;
  color: #94a3b8;
}
