/* =========================================
   VRCHNÍ ZELENÁ LIŠTA 
   ========================================= */
.custom-top-bar {

    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 30px;
    font-family: "Rubik", sans-serif !important;
    font-size: 8pt !important;
    font-weight: 600 !important;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer; 
}

.custom-top-bar .top-bar-item {
    text-align: center;
    flex: 1;
    white-space: nowrap;
}

.custom-top-bar .mobile-text {
    display: none;
}

#content-wrapper {
    margin-top: var(--custom-bar-height, 0px) !important;
}

/* --- ÚPRAVA PRO MOBILY --- */
@media (max-width: 768px) {
    .custom-top-bar .desktop-only,
    .custom-top-bar .desktop-text { 
        display: none !important; 
    }
    .custom-top-bar .mobile-text {
        display: inline !important;
    }
    .custom-top-bar { 
        justify-content: center; 
        font-size: 8pt !important; 
        padding: 4px 10px; 
    }
    
    #header {
        height: auto !important;
    }
}
</style>