div.hoverAble{
    margin: auto !important;
}

.dir-render-container{
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 10px; */
    max-width: 1200px;
    margin: auto;
}

.container {
    display: flex;
    flex-direction: column; /* Udržuje jednotlivé entry pod sebou */
    gap: 5px;
    max-width: 100%;
    margin: auto;
}

.entry {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center; /* Zarovnání na střed řádku */
    /* border-bottom: 1px solid #ccc; */
    padding: 5px 10px;
    /* background: #f9f9f9; */
}

.entry > div {
    flex: 1;
    min-width: 120px; /* Zajistí stejnou šířku */
    text-align: left;
    padding: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entry > div >div.desc-content >p{
    white-space: normal;
    overflow: auto;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    text-align: justify;
}

.entry .fileName{
    min-width: 400px;
}

.entry .toggle {
    cursor: pointer;
    flex: 0 0 auto; /* Tlačítko nebude roztahovat */
    margin-left: 10px;
}

.entry .desc {
    display: none;
    position: absolute;
    padding: 10px;
    background: var(--bs-body-bg);
    border-radius: 5px;
    border: 1px solid #ccc;
    /* margin-top: 10px; */
    min-width: 500px;
    max-width: 900px;
    min-height: 200px;
    max-height: 90vh;
    top:100%;
    z-index: 1;
}

.desc-name {
	background-color: var(--bs-dark);
	padding: 2px 8px;
	font-weight: bold;
    margin-bottom: 0.5rem;
}

.container .entry .no-item{
    font-size: 180%;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;    
}

.dir-render-container .fulltextSearchDiv {
    margin-bottom: 1rem !important;
}

.doc-dir-footer-description{
    border: 1px dotted silver;
    border-radius: 5px;
    font-style: italic;
}

.print-cov .html-AlertHelpDiv-header,
.print-cov .entry div:nth-child(5)
{
    display: none !important;
}

.print-cov .entry div:nth-child(1)
{
    min-width: 35% !important;
}

.print-cov  .container{
    background-image: url('/templates/zlkl/imgs/logo_water.png');
    background-repeat: repeat;
    background-size: calc(var(--md-content-page-width) * 0.25);
    background-position: center;    
}

@media print {
    .doc-dir-footer-content {
        display: none !important;
    }
    .code-toolbar>pre{
        page-break-inside: avoid !important;
        display: block !important;
    }
    .code-toolbar>pre>code{
        white-space: pre-wrap !important;
    }
}