/*
 *  Insel-Monarchie.de, das Browser Game
 * 
 *  PHP Version 8
 * 
 *  Kategorie:            Insel-Monarchie.de
 *  Paket:                Admintool / Datentool
 *  Author:               Michael Hamann [KaMi] (kami@insel-monarchie.de)
 *  ------
 *  Created Date:         Sunday December 29th 2024
 *  Last Modified:        Sunday December 29th 2024 05:01:07
 *  ------
 *  Copyright:            2006 - 2024 Insel-Monarchie.de
 *  Lizenz:               https://www.insel-monarchie.de/license.txt
 *  Link:                 https://www.insel-monarchie.de
 * 
 *  -----------------
 *  Header-Shortcut:       CTRL + ALT + H / 2x Drücken
 * 
 */

.nav-left {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    position: fixed;
    top: 130px;
    left: 5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    z-index: 1000;
}

.nav-left img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .nav-left {
        top: 120px;
        padding: 5px;
        margin-bottom: 40px;
        gap: 10px;
    }

    .nav-left img {
        width: 25px;
        height: 25px;
    }
}
@media screen and (max-width: 540px) {
    .nav-left {
        top: 120px;
        padding: 5px;
    }
    .nav-left img {
        width: 20px;
        height: 20px;
    }
}