
    #noteModal {
      display: none !important;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: -1 !important;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
  
    #noteModalContent {
      background: #fff;
      padding: 1.5rem;
      border-radius: 12px;
      max-width: 480px;
      width: 100%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      font-family: 'Arial', sans-serif;
      text-align: center;
    }
  
    #noteModalContent h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      font-weight: bold;
    }
  
    #noteModalContent p {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 1rem;
    }
  
    #modalNoteInput {
      width: 100%;
      height: 100px;
      padding: 0.75rem;
      font-size: 0.95rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      resize: none;
      margin-bottom: 1rem;
    }
  
    .noteModalActions {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  
    .noteModalActions button {
      padding: 0.75rem;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }
  
    #addNoteAndContinue {
      background-color: #222;
      color: white;
    }
  
    #continueWithoutNote {
      background-color: #f5f5f5;
      color: #333;
    }
  
    #addNoteAndContinue:hover {
      background-color: #000;
    }
  
    #continueWithoutNote:hover {
      background-color: #e2e2e2;
    }
  