/* tečkované podtržení a modal */
.slovnik-term {
    position: relative;
    border-bottom: 3px dotted rgb(16, 0, 118);
    cursor: pointer;
    text-decoration: none;
    
}
.slovnik-term {
    transition: opacity 0.4s ease;
    background-color: rgba(164, 178, 218, 0);
}

.slovnik-term:hover {
    background-color: rgb(164, 178, 218);
}

/* modal */
#slovnik-modal { position: fixed; left:0; top:0; right:0; bottom:0; z-index:99999; display:flex; align-items:center; justify-content:center; }
.slovnik-modal-bg { position:absolute; left:0; top:0; right:0; bottom:0; background: rgba(0,0,0,0.45); }
.slovnik-modal-box {
    position: relative;
    z-index: 100000;
    max-width: 720px;
    width: 95%;
    max-height: 80vh;       /* <-- maximální výška 80% viewportu */
    overflow-y: auto;       /* <-- pokud obsah přesáhne, objeví se scroll */
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.slovnik-close { position:absolute; right:10px; top:10px; background:transparent; border:none; font-size:22px; cursor:pointer; }
.slovnik-body { margin-top:8px; color:#111; line-height:1.45; }
.slovnik-body h3 { margin-top:0; }
