
/* ДУГМАД НА ВРХУ - ВАН САДРЖАЈА --- */
#lang-switcher {
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 12px;
    z-index: 10000;
}

#home1 {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 10000;
}

.navigation {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    font-size: 26px;
    border-radius: 50%;
    transition: all 0.2s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #2b6cb0, #1a4d7a);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-button:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #2c5282, #1a365d);
}

.lang-btn {
    background: linear-gradient(135deg, #2b6cb0, #cccccc);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}