﻿
:root {
    /*--primary-color: #2B61FF;*/
    /*--secondary-color: #FF8F5C;*/
    --text-color-weak: #1E1E1E;
    --bg-color-gray: #DADADA;
    --rz-root-font-size: 16px;
    --rz-body-font-size: 1rem;
    /*    --rz-body-line-height: 1.5;
    --rz-body-background-color: var(--rz-base-100);*/
    /*--rz-text-font-family: Atyp BL Text;*/
    --rz-sidebar-background-color: var(--primary-light-65);
    --rz-footer-background-color: var(--rz-base-300);
    --rz-success: rgb(0,190,0);
    --rz-header-background-color: var(--secondary);
    --rz-layout-body-padding: 0;
    --rz-layout-body-margin: 0;
}

* {
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}


.logo {
    background-image: url('../images/logoKSUNL.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 152px;
    height: 110px;
    background-size: contain;
}

.small-logo {
    background-image: url('../images/logoKSUNL.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 107px;
    height: 77px;
    background-size: contain;
}


.link-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 1.3rem;
    justify-content: center;
}

@media (min-width: 1400px) {
    .link-list {
        justify-content: left;
    }
}

.link-list .link-item {
    cursor: pointer;
    /*border: 1px solid black;*/
    background-color: var(--secondary-light-30);
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    max-width: 15rem;
}

    .link-list .link-item:hover {
        background-color: var(--rz-secondary-lighter);
    }

.link-list .link-icon {
    font-size: 40px;
}


.map-frame-wrapper {
    width: 100%;
    /*    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;*/
}

    .map-frame-wrapper .map-frame {
        margin-inline: auto;
        border-radius: 5px;
        width: 100%;
        height: 340px;
    }

.small-banner {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
    position: relative;
}

@media (min-width: 600px) {

    .small-banner {
        display: none;
    }

    .map-frame-wrapper {
        background-image: url('../images/banner.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 500px;
        position: relative;
    }

        .map-frame-wrapper .map-frame {
            border: 0;
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 5px;
            opacity: 0.93;
            margin-left: 2rem;
            width: 420px;
            height: 340px;
        }
}

@media (min-width: 1400px) {
    .map-frame-wrapper .map-frame {
        border: 0;
        position: absolute;
        right: 3rem;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 5px;
        opacity: 0.93;
        margin-left: 2rem;
        width: 420px;
        height: 340px;
    }
}

.rz-body {
    overflow-x: auto;
    scrollbar-width: thin; /* Firefox - tenký scrollbar */
}

/* Chrome, Safari a Opera - vlastní tenký scrollbar */
.rz-body::-webkit-scrollbar {
    height: 6px;
}

.rz-body::-webkit-scrollbar-track {
    background: transparent;
}

.rz-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}
