﻿/* Base styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    /*background: linear-gradient(to right, #1e3c72, #2a5298);*/
    padding: 0.5rem 1rem;
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
    position: relative;
}

.navbar-brand {
    /*color: #fff;*/
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-toggle {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #3A61B1;
    cursor: pointer;
    display: none;
}

/* Menu styles */
.navbar-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    /*margin: 0;*/
    margin-left: auto;
    padding: 0;
}

    .navbar-menu li a {
        color: #3A61B1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .navbar-menu li a:hover {
            color: #000000;
        }

/* Responsive behavior */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 250px;
        z-index: 1000000000;
        background-color: #808080;
        display: none;
    }

        .navbar-menu.show {
            display: flex;
            opacity: 0.9;
        }
}
