
#spinn{
  display:none;
}

    #notepad-container {
  width: 80%;
  max-width: 600px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-left: auto; /* Add this line */
}

    #notepad {
        width: 100%;
        height: 70vh;
        font-size: 16px;
        padding: 20px;
        border: none;
        outline: none;
        box-sizing: border-box;
        resize: none;
        overflow: auto;
    }
    #notepad-controls {
        padding: 10px;
        background-color: #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #save-button {
        padding: 10px;
        background-color: #4caf50;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        outline: none;
    }
