body {
  background-color: #2c4050; 
  color: #fefefe; 
}

nav {
  background-color: #34495e; 
  color: #fefefe;
}

.nav-links {
  display: flex;
  justify-content: space-between; 
  list-style: none;
}


form {
  color: #fefefe;
}

ul {
  background-color: #3b4a5a;
  color: #fefefe;
  padding: 0.75rem 1.25rem;
  margin: 1rem 0;          
  border-radius: 6px;      
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

ul:hover {
  background-color: #455564;
}

li {
  color: #fefefe;
}

a,
button {
  display: inline-block;
  background-color: #00e676;
  color: #2c4050;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a:hover,
button:hover {
  background-color: #1de9b6;
  color: #1b2a33;
  text-decoration: none;
}

ul.note-list {
  background-color: transparent;
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}

.note-list li {
  margin-bottom: 1rem;
}


