body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: transparent;
    color: white;
    background: url('../images/dinbild.jpg') no-repeat right center fixed;
    background-size: cover;
    background-attachment: fixed;
}

/* 📌 HEADER */
header {
    background: linear-gradient(to bottom, black, #4b0000);
    color: #5b0a18;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    gap: 20px;
}

header h1 {
    margin: 0;
    font-size: 48px;
    flex-shrink: 1;
}

/* 📌 MENYTOGGLE (hamburgare) */
.menu-toggle {
    display: none;
    font-size: 36px;
    cursor: pointer;
    margin-left: auto;
    color: white;
}

/* 📌 NAVIGATION */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #5b0a18;
    font-size: 32px;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    text-shadow: #38da3a ;
    color: #a24a33 ;
}

/* 📌 FOOTER */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, black, #4b0000);
    color: white;
    text-align: center;
    padding: 2px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer img {
    width: 25px;
    height: auto;
}

/* 📌 MAIN */
main {
    margin-top: 80px;
    margin-bottom: 40px;
    height: calc(100vh - 120px);
    overflow: hidden;
}

main iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
}

/* 📌 CONTENT BOX */
.content-box {
    width: 45%;
    margin: 40px 0 40px 40px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    color: white;
}

.content-header {
    background: linear-gradient(to bottom, black, #4b0000);
    padding: 10px 20px;
    font-size: 28px;
    font-weight: bold;
}

/* 📌 SERVERSTATUS IMPLANT-IKONER */
.implant-icon {
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-right: 5px;
    transform: scale(1);
    transition: transform 0.2s ease;
}

.implant-icon:hover {
    transform: scale(1.3);
}

.implant-green {
    background-image: url("../images/implants/implant_green.png");
}

.implant-red {
    background-image: url("../images/implants/implant_red.png");
}

.implant-blue {
    background-image: url("../images/implants/implant_blue.png");
}

/* 📱 MOBILVY - RESPONSIV ANPASSNING */
@media (max-width: 768px) {
    header {
        gap: 10px;
    }

    header h1 {
        font-size: 28px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 36px;
        cursor: pointer;
        margin-left: auto;
        margin-right: 12px;
        color: white;
    }

    .content-box {
        width: 90%;
        margin: 20px auto;
    }

    .content-header {
        font-size: 22px;
    }

    table {
        font-size: 14px;
    }
}
/* 🔥 LOGO-GLOW */
.logo-glow {
    text-shadow: 0 0 8px #fff , 0 0 16px #fff , 0 0 24px #5b0a18;
}

#maia-box {
    position: fixed;
    right: 20px;
    bottom: 100px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px;
    border-radius: 12px;
    border: 2px solid #842545;
    color: #ffdee9;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    max-width: 300px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
}

#maia-box img {
    width: 80px;
    margin-bottom: 8px;
}
