/* Shared language switcher used on every page (SK / HU) */
.lang-switch {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.lang-switch a {
    padding: 8px 14px;
    color: white;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.lang-switch a.active {
    background: rgba(161, 91, 25, 0.85);
}

.lang-switch a:hover {
    background: rgba(161, 91, 25, 0.5);
}
