/* =========================
PAGE DECOR
========================= */
.document-page-decor {
    position: relative;
    min-height: 100vh;
}

/* LEVÁ */
.document-page-decor::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50px;
    width: 150px;
    height: 100%;
    background: url("/themes/pohadka/images/decor-left.png") repeat-y left top;
    background-size: contain;
    opacity: .7;
    pointer-events: none;
    z-index: 0;
}

/* PRAVÁ */
.document-page-decor::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50px;
    width: 150px;
    height: 100%;
    background: url("/themes/pohadka/images/decor-right.png") repeat-y right top;
    background-size: contain;
    opacity: .7;
    pointer-events: none;
    z-index: 0;
}

/* zesvětlení */
.document-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 245, 235, .55);
    z-index: 1;
}

/* obsah */
.document-page-decor .container {
    position: relative;
    z-index: 2;
}

/* TABULKA */

.table{
    border-collapse: separate;
    border-spacing: 0 10px;
}

/* řádky jako karty */
.table tbody tr{
    background: rgba(255,255,255,.95);
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    border-radius:16px;
    overflow:hidden;
}

/* buňky */
.table td,
.table th{
    border:none !important;
    padding:14px 12px;
}

/* header */
.table thead th{
    font-weight:700;
    color:var(--color-success);
    font-size:14px;
}

/* hover */
.table tbody tr:hover{
    transform:scale(1.01);
    transition:.2s;
}

.doc-type{
    font-weight:700;
    color:var(--color-title) !important;
}

/* náhled */
.btn-outline-secondary{
    border-radius:30px;
    font-size:13px;
}

/* download */
.doc-download{
    color:white !important;
    border-radius:30px;
    font-size:13px;
}
