/* Header styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #ddfdff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 100px;
  height: auto;
}
/* Global styles */

  body {
  font-family: 'Roboto', sans-serif;
  background-color: #e9d9afe0;
  }
  
  .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  }
  
  h1 {
  text-align: center;
  margin-bottom: 30px;
  }
  
  /* Form styles */
  form {
  background-color: #faf9f9;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  }
  
  form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  }
  
  form input[type="text"],
  form textarea {
  width: 97%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  }
  
  form textarea {
  height: 100px;
  }
  
  form button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  }
  
  form button[type="submit"]:hover {
  background-color: #0056b3;
  }
  li button {
    margin-left: 10px;
    padding: 5px 10px;
  }

  
  /* Note list styles */
  #note-list {
  max-width: 800px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
  
  }
  #note-list button {
  width: 40px;
  }

  #note-list li {
  background-color: #fff3ea;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  }
  
  #note-list li span {
    font-size: 18px;
  }
  
  #note-list li p {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .note {
    display: flex;
    align-items: center;
  }
    
  #note-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px;
  }
  
  
