/* Shared layout — used by base.html and base_academy.html */

.app-shell {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.breadcrumb {
    display: none;
}

/* Topbar */

.app-topbar {
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(20, 60, 58, 0.12);
    box-shadow: 0 10px 24px rgba(20, 60, 58, 0.08);
    backdrop-filter: blur(8px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 5;
}

.app-topbar-content {
    width: 100%;
}

.app-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-topbar-left {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.app-topbar-actions .btn {
    border-radius: 999px;
    font-size: 0.85rem;
    padding: 0.35rem 0.95rem;
}

.app-topbar-center {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.app-topbar .navbar-brand {
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    color: #143c3a;
    letter-spacing: 0.4px;
}

.app-topbar .navbar-brand:hover {
    color: #143c3a;
}
