/* =================================================================
   profile-global.css
   Overrides for profile pages — loaded AFTER /css/global.css
   Cancels the root body flex/column-reverse and sets profile fonts
   ================================================================= */

body {
    display: block;              /* cancel root's flex column-reverse */
    flex-direction: unset;
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}
