    body {
      font-family: sans-serif;
      /* background: #f7f7f7; */
      padding: 20px;
    }

    #controls {
      margin-bottom: 10px;
    }

    button {
      margin-right: 10px;
      padding: 8px 12px;
      border: none;
      background: #007bff;
      color: white;
      border-radius: 4px;
      cursor: pointer;
    }

    #stickyNotes {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .note {
      background: #fff3b0;
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 10px;
      width: 200px;
      min-height: 120px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      position: relative;
      cursor: grab;
    }

    .note:active {
      opacity: 0.6;
      cursor: grabbing;
    }

    textarea {
      width: 100%;
      height: 80px;
      border: none;
      background: transparent;
      resize: none;
      font-size: 14px;
      outline: none;
    }

    .delete {
      position: absolute;
      bottom: 5px;
      right: 5px;
      background: red;
      color: white;
      padding: 4px 8px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }::-webkit-scrollbar{
      display: none;
    }