﻿:root {
    --gpch-appbar-height: 64px;
}

.gpch-appbar {
    height: var(--gpch-appbar-height);
}


.gpch-appbar {
    background-color: #2f538e;
    color: white;
    padding: 12px 24px;
    box-shadow: 0 8px 8px rgba(0,0,0,0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.appbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.appbar-logo {
    height: 40px;
    transition: transform 0.6s ease-in-out;
}

.appbar-logo:hover {
    transform: rotate(360deg) scale(1.05);
}

.appbar-nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

    .appbar-nav a:hover {
        text-decoration: underline;
    }
