.dokumenty-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Riadok s dvoma klávesmi */
.klaves-row {
    display: flex;
    flex-direction: row;
    gap: 2px;
    width: 100%;
}

/* Základ klávesu */
.klaves {
    display: flex;
    align-items: center;
    /*justify-content: flex-start;*/
    gap: 12px;
   
    padding: 10px 14px;

    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(0,0,0,0.15));
    /*border: 1px solid rgba(215, 172, 51, 0.7);*/
    border-radius: 4px;

    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    text-decoration: none;

    color: rgba(215, 172, 51, 0.7);
    /*font-family: Arial, sans-serif;*/
    font-size: 20px;
    font-weight: 100;
    letter-spacing: .05em;
    transition: all 0.15s ease;
}

/* Hover farba */
.klaves:hover {
    color: rgba(255, 203, 61, 0.7);
    border-color: rgba(255, 203, 61, 0.7);
    background: linear-gradient(180deg, rgba(255,203,61,0.15), rgba(0,0,0,0.25));
}

/* Kliknutie – 3D vpadnutie */
.klaves:active {
    transform: translateY(3px);
    box-shadow: inset 0 0 12px rgba(0,0,0,0.55);
}

/* Ikona */
.klaves.klaves-pdf {
    width: 10%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.klaves.klaves-name {
    width: 90%;
    text-align: left;
}


/* Text */
.klaves.klaves-name.open-modal {
    width: 80%;
    text-align: left;
}

/* MODÁLNE OKNO */
.modal-overlay {
    display: none;
    inset: 0;
    /*background: rgba(0,0,0,0.7);*/
    /*backdrop-filter: blur(3px);*/
    justify-content: center;
    align-items: center;
    z-index: 999999999 !important;
    position: fixed !important;
}

.modal {
    position: relative;
    background: rgba(120, 120, 120,0.5);
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    z-index: 999999999 !important;
    height: calc(100vh - 300px);  /* dynamická výška */
    max-height: 900px;            /* limit */
    width: auto;
    max-width: 90%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MOBIL – výška sa mení, max 600px */
@media (max-width: 768px) {
    .modal {
        height: calc(100vh - 300px);
        max-height: 500px;
    }
}

.modal img {
    /*max-width: 66%;*/
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 4px;

}

/* Zavrieť */
.modal-close {
    position: absolute;
    top: -22px;
    right: -22px;
    font-size: 45px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: rgba(120, 120, 120,0.5); /* Vyplnený kruh */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;

    cursor: pointer;
    z-index: 2000;

    transition: background 0.2s, transform 0.1s;
}

.modal-close:hover {
    background: rgba(120, 120, 120,0.85);
}

.modal-close:active {
    transform: scale(0.9);
}


/* Základný tooltip */
.klaves-name[data-tooltip],.klaves-pdf[data-tooltip] {
    position: relative;
    cursor: pointer;
}

/* Samotná bublina */
.klaves-name[data-tooltip]::after,.klaves-pdf[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%; /* nad prvkom */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(45, 44, 44, 0.9); /*linear-gradient(180deg, rgba(255,255,255,0.1), rgba(0,0,0,1.0));*/
    color: rgba(218, 183, 87, 0.7);
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 9999;
}

/* Šípka */
.klaves-name[data-tooltip]::before,.klaves-pdf[data-tooltip]::before {
    content: "";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0,0,0,0.85) transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 9999;
}

/* Hover → tooltip sa zobrazí */
.klaves-name[data-tooltip]:hover::after,
.klaves-name[data-tooltip]:hover::before {
    opacity: 1;
}
.klaves-pdf[data-tooltip]:hover::after,
.klaves-pdf[data-tooltip]:hover::before {
    opacity: 1;
}

.diferent-font {
    font-family: Courier New, monospace;
}

.letter-spacing {
    letter-spacing: .2em;
}

.doprimo-icona-rozmer {
    width: 30px;
    height: 30px;
}

.separator-margin {
    margin: 20px 0px;
}

.p-margin-zero {
    margin: 0px;
}

.h-margin-bottom-zero {
    margin-bottom: 0px;
}

.h-margin-top-zero {
    margin-top: 0px;
}