﻿#stickyDiv {
    position: absolute;
}

textarea {
    background-color: transparent;
    border: medium;
    position: unset;
    resize:none;
    font-size: 0.8em;
    padding: 15px;
    min-height: 150px;
    width: 100%;
    min-width: 250px;
    max-width: calc(100% - 35px);
    flex:1;
}

textarea:focus {
    outline: none;
    border: none;
    background-color: #fff;
}

.sNoteTitle {
    background-color: #d9d9d9;
    padding: 5px 15px;
    font-size:1em;
}

.sNote {
    line-height: 1.5;
    font-size: 1.1em;
    position: absolute;
    border: 1px dotted #000;
    border-radius: 5px;
    padding: 0px;
    background: linear-gradient(#fff, #e9e9e9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.5s ease;
    min-width: max-content;
    width: 100%;
    display: flex;
}

    .sNote:hover {
        box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
        background-color:#f1de65;
    }

    .sNote:focus {
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
        outline: none;
        background-color: #f1de65;
    }
