/* style.css */
        body {
            font-family: sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-image: url('/images/01.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative; /* Vajalik absoluutselt positsioneeritud nupu jaoks */
            overflow: hidden; /* KEELAB KERIMISE */
	    padding-bottom: 60px;
        }

        .login-container {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        h1 {
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        h1 img {
            height: 1em;
            width: auto;
            animation: swing 0.5s infinite alternate;
            transform-origin: top center;
        }

        @keyframes swing {
            0% { transform: rotate(-5deg); }
            100% { transform: rotate(5deg); }
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 300px;
            margin-top: 20px;
        }

        .login-form input {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1em;
        }

        .login-form button {
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1em;
        }

        .login-form button:hover {
            background-color: #0056b3;
        }

        /* Lingi menüü stiilid - UUS POSITSIOON JA KUJUNDUS */
        .app-menu-button {
            position: absolute;
            top: 20px; /* Lisame veidi vahet ülevalt */
            right: 20px; /* Lisame veidi vahet paremalt */
            background-color: #f0f0f0;
            color: #333;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2em;
            cursor: pointer;
            z-index: 10; /* Et menüü oleks sisu peal */
        }

        .app-menu-button:hover {
            background-color: #ddd;
        }

        .app-menu {
            position: absolute;
            top: 55px; /* Kohandame menüü positsiooni nupu alla */
            right: 20px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            padding: 10px;
            display: none; /* Algselt peidetud */
            z-index: 9;
            gap: 10px; /* Vahe linkide vahel */
            width: auto; /* Kohandub sisu laiusega */
        }

        .app-menu.open {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Kolm linki reas */
        }

        .app-menu a {
            display: flex; /* Hoiame pildi ja teksti koos */
            flex-direction: column; /* Muudame sisu vertikaalseks lingi sees */
            align-items: center; /* Tsentreerime pildi ja teksti horisontaalselt */
            text-decoration: none;
            color: #333;
            padding: 5px;
            border-radius: 4px;
            text-align: center; /* Tsentreerime teksti lingi sees */
        }

        .app-menu a:hover {
            background-color: #f0f0f0;
        }

        .app-menu a img {
            width: 36px; /* Suurem ikoon */
            height: 36px;
            margin-bottom: 5px; /* Vahe pildi ja teksti vahel */
            border-radius: 4px;
            object-fit: cover;
        }
	footer {
	    position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.7); /* must poolläbipaistev taust */
            color: #fff; /* valge tekst */
            font-size: 0.85em;
            text-align: center;
            padding: 10px;
            z-index: 999;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(4px); /* valikuline: hägususe efekt */
}
