﻿body {
    min-height: 100vh;
    background: #f7f8fa;
}

.geo-shell {
    max-width: 1180px;
}

.geo-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: var(--bs-body-bg);
}

.geo-brand {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    font-weight: 650;
    letter-spacing: 0;
}

.geo-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: .375rem;
    color: #fff;
    background: var(--bs-primary);
    font-size: .95rem;
    line-height: 1;
}

.geo-nav {
    gap: .25rem;
    margin-top: .75rem;
}

.geo-nav .nav-link {
    border-radius: .375rem;
    padding: .5rem .75rem;
    color: var(--bs-body-color);
}

.geo-nav .nav-link:hover,
.geo-nav .nav-link:focus {
    background: var(--bs-tertiary-bg);
    text-decoration: none;
}

.geo-user {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .125rem;
    padding: .75rem 0 0;
    color: var(--bs-body-color);
}

.geo-user-name {
    max-width: 18rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    line-height: 1.2;
}

.geo-user-role {
    color: var(--bs-secondary-color);
    font-size: .8125rem;
    line-height: 1.2;
}

.geo-main {
    padding: 1rem 0 2rem;
}

@media (min-width: 992px) {
    .geo-nav {
        margin-top: 0;
        margin-left: 2rem;
    }

    .geo-user {
        align-items: flex-end;
        padding: 0;
        text-align: right;
    }
}

@media (max-width: 575.98px) {
    .geo-main {
        padding-top: .75rem;
    }

    .geo-user-name {
        max-width: 100%;
    }
}
