body {
    margin: 0;
    background: #000;
    font-family: Arial, sans-serif;
    color: white;
}

/* TOPBAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(to right, #6a00ff, #C71B1B);
}

.profile-icon {
    font-size: 22px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

.topbar img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile-icon img {
    width: 45px;
    height: 45px;
    border-radius: 50%;      /* maakt hem rond */
    object-fit: cover;       /* zorgt dat hij niet uitrekt */
    border: 2px solid #fff;  /* optioneel: witte rand */
    box-shadow: 0 0 5px rgba(0,0,0,0.2); /* subtiele schaduw */
}

/* Hamburger standaard verbergen */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.container {
    width: 350px;
    margin: 80px auto;
    text-align: center;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(to right, #6a00ff, #C71B1B);
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

.error {
    color: #ff4d4d;
    margin-top: 10px;
}

footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, #6a00ff, #C71B1B);
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Mobile */
@media (max-width: 600px) {

    .hamburger {
        display: block;
        color: white;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: linear-gradient(to right, #6a00ff, #C71B1B);
        margin-top: 10px;
        padding: 10px 0;
        border-radius: 10px;
    }

    .nav-links a {
        padding: 10px;
        display: block;
    }

    /* Actieve menu */
    .nav-links.active {
        display: flex;
    }
}
