.app-layout {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    padding: 2rem 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--main-bg);
    overflow-y: auto;
}

/* ── Global Page Titles ─── */
.page-title-header, .welcome-header {
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.page-title-text, .welcome-header h1 {
    font-family: 'ABeeZee', sans-serif;
    font-weight: 400;
    font-size: 2.6rem;
    margin: 0;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.page-title-text::after, .welcome-header h1::after {
    content: '';
    display: block;
    margin: 0.45rem auto 0;
    width: 48px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #ff8a3d, #ffb27a);
    opacity: 0.85;
    box-shadow: 0 0 10px rgba(255, 138, 61, 0.3);
}