/* Styl přepínače */
#dark-mode-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#dark-mode-toggle:hover {
    background-color: var(--html-color);
}

#dark-mode-toggle svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
    transition: fill 0.3s ease;
}
