
body {
    margin: 0;
    padding: 1px;
	color: white;
	font-weight: bold;
    font-family: Arial, sans-serif;
    background: #111;
}

/* Container för rutorna */
.nav-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Varje länk blir en egen ruta */
.nav-item {
    background: #333;
    padding: 12px 5px;
    border-radius: 0px;
    text-align: left;
    transition: 0.2s;
    border: 1px solid #444;
}

/* Länkstil */

.nav-item a {
    font-family: Arial;
    letter-spacing: 1px;
    font-size: 16px;
    color: white; 
    text-decoration: none;
}

/* Hover-effekt */
.nav-item:hover {
    background: #00c2ff;
    border-color: #00a0d8;
    transform: translateX(4px);
}

/* Aktiv knapp (om du vill) */
.nav-item.active {
    background: #00c2ff;e
    border-color: #00a0d8;
    font-weight: bold;
}