body {
  background-color: #f9f9f9;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.notet-this {
  text-align: center;
  margin-top: 100px;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
}

.fab {
  position: fixed;
  top: 85%;
  right: 20px;
  transform: translateY(-50%);
  width: 70px; /* bir tık daha büyük dokunmatik ekran için */
  height: 70px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px; /* Daha büyük + işareti */
  font-weight: 900; /* Daha kalın */
  font-family: Arial, sans-serif; /* Daha düzgün bir + için net bir font */
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.1s ease-in-out; /* küçük bir tıklama animasyonu */
}

.fab:active {
  transform: translateY(-50%) scale(0.95); /* tıklayınca %5 küçülme efekti */
}



.menu {
  position: fixed;
  bottom: 20%;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.menu button {
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-weight: bold;
  cursor: pointer;
}

/* Menü butonlarının farklı arka plan renkleri */
.menu-notlar {
  background-color: #e0f7fa; /* Açık mavi */
}

.menu-hatirlaticilar {
  background-color: #dcedc8; /* Açık yeşil */
}

.menu-tekrarli {
  background-color: #fff9c4; /* Açık sarı */
}

.menu-gecmis {
  background-color: #eeeeee; /* Açık gri */
}


/* Zaten olanları koruyoruz */

.note-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.note-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}



  