.navbar {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1a1f2f;
    margin-bottom: 20px;
    top: 0;
    z-index: 999;
    background-color: #131313;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar-links a {
    color: #ccc;
    font-weight: 500;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-links a:hover,
.navbar-links .link-active {
    color: #00b7ff;
}


.logonavbar {
    border-radius: 15%;
    margin-left: 2%;
    height: 50px;
}

.logotitle {
    margin-left: 10px;
    font-family: Arial;
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.separator {
    margin: 0 5px;
    color: #9DC7FF;
}

.navbar-links a {
    text-decoration: none;
    color: white;
    padding: 5px 7px;
    border-radius: 5px;
}

.navbar-links a.link-active {
    color: #9DC7FF;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 1100;
    padding: 0;
    transition: transform 0.3s ease;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.navbar-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
}

.navbar-toggle.open span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-links {
        flex-direction: column;
        background-color: #222;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
        z-index: 1000;
    }

    .navbar-links.show {
        max-height: 300px;
    }

    .separator {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }
}
