body {
    background: #eef2f3;
    padding-bottom: 100px;
}

.section-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.section-header {
    font-size: 18px;
    margin-bottom: 10px;
}

.thought-input {
    resize: none;
    min-height: 45px;
    overflow: hidden;
}

.thought {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1e6f7a, #2bb673);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.drag {
    cursor: grab;
    margin-right: 10px;
}

.text {
    flex-grow: 1;
}

.delete {
    cursor: pointer;
    margin-left: 10px;
}

/* FLOATING BAR */
.floating-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    background: linear-gradient(90deg, #1e6f7a, #2bb673);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.floating-bar form {
    display: flex;
    gap: 10px;
}

#quickInput {
    flex-grow: 1;
    resize: none;
}

.editable {
    outline: none;
    white-space: pre-wrap;
}

.editable:focus {
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
}