Tree Template | Blob

/* blob SVG style */ .blob-svg width: 85px; height: 85px; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.1)); transition: all 0.2s;

h1 font-size: 2.3rem; font-weight: 700; margin: 0 0 0.25rem 0; color: #4b2e1a; letter-spacing: -0.5px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: space-between;

// load previously saved note for this blob if exists const textarea = document.getElementById("reflectionInput"); if (savedNotes[blobId]) textarea.value = savedNotes[blobId]; else textarea.value = ""; document.getElementById("saveMessage").innerHTML = "";

.blob-item.selected .blob-number background: #ffaa44; color: white; border-color: #ff8800; box-shadow: 0 0 0 2px white; blob tree template

footer font-size: 0.7rem; text-align: center; margin-top: 28px; opacity: 0.7;

.blob-name background: #ffddb0; padding: 8px 20px; border-radius: 44px; font-size: 1rem;

button:hover background: #d69a58; transform: scale(0.97); /* blob SVG style */

body font-family: 'Segoe UI', 'Quicksand', system-ui, -apple-system, 'Helvetica Neue', sans-serif; background: linear-gradient(145deg, #f9f3e6 0%, #fff0e0 100%); margin: 0; min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px;

button background: #e7b27d; border: none; padding: 8px 22px; border-radius: 40px; font-weight: bold; color: #2e1d0e; margin-top: 12px; cursor: pointer; transition: 0.1s linear; font-size: 0.8rem;

.sub color: #7a4a28; border-left: 4px solid #ffb46e; padding-left: 18px; margin: 12px 0 28px 0; font-weight: 500; font-size: 1rem; filter: drop-shadow(0 6px 10px rgba(0

.blob-item:hover transform: scale(1.02);

/* blob items */ .blob-item display: flex; flex-direction: column; align-items: center; margin-bottom: 28px; cursor: pointer; transition: transform 0.2s ease, filter 0.1s;