body {
    font: 14px Arial, Helvetica, sans-serif;
    color: #2a316f
}

/* ======== HEADER ======== */
.logo{position:relative;float:left;z-index:1; max-width:60px}

header {
    position: relative;
    z-index: 1000;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: 1fr 1fr;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    margin: 0;
    background: White;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
}

header .logo {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}

header .title {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
}

header .logo a {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header .title h2 {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ======== NAVBAR ======== */
.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    font-family: Arial, sans-serif;
    transition: box-shadow 0.3s ease;
}

.navbar.is-sticky {
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}
    
.navbar-left, .navbar-right {
    display: flex;
    align-items: center;
}

.navbar a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 18px;
    transition: background-color 0.3s ease;
}

.navbar a i.fa {
    font-size: 18px;
}

.navbar a:hover {
    background-color: #555;
}

.navbar-right a {
    border-left: 1px solid #444;
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
    }

    .navbar-left, .navbar-right {
        flex-direction: column;
        width: 100%;
    }

    .navbar a {
        justify-content: center;
        border-left: none;
        border-top: 1px solid #444;
    }
}

.navbar a:hover {
    background-color: #656565;
}
