/* This file contains CSS rules for technical writing. */

/* abbr element styles

\works-with class Abbreviations

\version {class Abbreviations,1.0.0}
*/
abbr
{
    --left-abbr: calc-size(max-content, size + 100px);
    position: relative;
    border-bottom: dashed 1px gray;
}
abbr > span:first-child
{
    display: none;
    width: max-content;
}
abbr:hover > span:first-child
{
    display: block;
    position: absolute;
    left: 0px;
    background-color: aquamarine;
}

/**
span.PopupComment
*/
span.PopupComment
{
    --left-abbr: calc-size(max-content, size + 100px);
    position: relative;
    border-bottom: dashed 1px gray;
    display: relative;
}
span.PopupComment > span:first-child
{
    display: none;
    width: max-content;
}
span.PopupComment:hover > span:first-child
{
    display: block;
    cursor: help;
    position: absolute;
    border: 1px solid black;
    border-radius: 25%;
    left: 0px;
    top: 0.5em;
    margin-top: 0px;
    padding: 5px;
    background-color: rgba(127, 255, 212,0.5);    
}

span.FileName
{
    font-family: monospace;
    background-color:aliceblue;
}