body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
  }
  
  .container {
    max-width: 100%;
    text-align: center;
  }
  
  #addNoteBtn {
    padding: 10px 20px;
    font-size: 16px;
    margin-bottom: 20px;
    cursor: pointer;
  }
  
  #notesContainer {
    position: relative;
    width: 100%;
    height: 80vh;
    border: 2px dashed #ccc;
    overflow: hidden;
  }
  
  .note {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #fff8a6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 10px;
    box-sizing: border-box;
    cursor: move;
    border-radius: 8px;
    .delete-btn {
        position: absolute;
        top: 5px;
        right: 8px;
        background: transparent;
        border: none;
        font-size: 18px;
        color: #444;
        cursor: pointer;
        z-index: 10;
      }
      
      .note-content {
        margin-top: 20px;
        height: 160px;
        overflow-y: auto;
        outline: none;
      }
      
  }
  