/* Styl menu poziomego */
.horizontal-custom-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #DCDCDC;
    font-family: sans-serif;
    text-transform: uppercase;
}

.horizontal-custom-menu ul li {
    position: relative;
}

.horizontal-custom-menu ul li a {
    display: block;
    padding: 12px 16px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

/* Separator | */
.horizontal-custom-menu ul li a::after {
    content: " |";
    color: black;
    margin-left: 10px;
}

.horizontal-custom-menu ul li:last-child a::after {
    content: ""; /* Usuń separator na końcu */
}

/* Podmenu */
.horizontal-custom-menu ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #DCDCDC;
    min-width: 180px;
    display: none;
    flex-direction: column;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.horizontal-custom-menu ul li:hover > ul {
    display: flex;
}

.horizontal-custom-menu ul li ul li a {
    padding: 10px;
    text-transform: none;
}

/* Strzałka ▼ */
.horizontal-custom-menu ul li.has-submenu > a::before {
    content: "▼ ";
    font-size: 0.6em;
    vertical-align: middle;
    margin-right: 4px;
}
