/* ====================================== */
/* NOTES POPUP */
/* ====================================== */
.notes-popup {
  width: 650px;
  max-width: 95%;
  padding: 25px;
  border-radius: 22px;
  background: rgba(4, 10, 30, 0.95);
  border: 1px solid #00d4ff;
  box-shadow:
    0 0 25px rgba(0, 212, 255, 0.3),
    0 0 60px rgba(0, 212, 255, 0.15);
  animation: popupGlow 2s infinite alternate;
}
.notes-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #00d4ff;
}
.notes-input {
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #00d4ff;
  background: #102040;
  color: var(--text-primary);
}
.notes-textarea {
  width: 100%;
  height: 250px;
  resize: none;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #00d4ff;
  background: #102040;
  color: var(--text-primary);
}
.notes-buttons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.notes-save-btn,
.notes-cancel-btn {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}
.notes-save-btn {
  background: #00d4ff;
  color: black;
}
.notes-cancel-btn {
  background: #1f2c4f;
  color: var(--text-primary);
}
@keyframes popupGlow {
  from {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  }
  to {
    box-shadow: 0 0 45px rgba(0, 212, 255, 0.5);
  }
}
/* ================================= */
/* NOTES POPUP */
/* ================================= */
#notesPopup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999999 !important;
}
.notes-list {
  margin-top: 20px;
  max-height: 300px;
  overflow-y: auto;
}
.saved-note-card {
  background: #07192f;
  border: 1px solid #00d9ff40;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.saved-note-card h4 {
  color: #00d9ff;
  margin-bottom: 10px;
}
.saved-note-card button {
  margin-top: 10px;
  background: #ff3d3d;
  color: var(--text-primary);
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
}
.note-date {
  font-size: 11px;
  color: #8aa4c8;
  margin-top: 8px;
}
