/*==================================
    Reset
==================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


/*==================================
    Variables
==================================*/

:root{

    --primary:#2563eb;

    --background:#f5f7fb;

    --card:#ffffff;

    --text:#1f2937;

    --text-secondary:#6b7280;

    --border:#e5e7eb;

    --shadow:0 2px 10px rgba(0,0,0,.05);

    --radius:18px;

}


/*==================================
    Base
==================================*/

html{

    scroll-behavior:smooth;

}


body{

    font-family:
    Inter,
    system-ui,
    sans-serif;

    background:var(--background);

    color:var(--text);

    min-height:100vh;

}


img{

    max-width:100%;

    display:block;

}


a{

    color:inherit;

    text-decoration:none;

}


button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}


input,
select,
textarea{

    font:inherit;

    outline:none;

    border:none;

}


/*==================================
    App
==================================*/

#app{

    width:100%;

    min-height:100vh;

}


/*==================================
    Common Components
==================================*/

.page{

    display:none;

}


.page.active-page{

    display:block;

}


.card{

    background:var(--card);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}


.hidden{

    display:none !important;

}

/*==================================
    Layout
==================================*/

.header-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

    padding:16px;

}


.header-left,
.header-center,
.header-right{

    display:flex;

    align-items:center;

}


.header-center{

    flex:1;

    justify-content:center;

}


.header-center h1{

    font-size:24px;

    font-weight:700;

}


/*==================================
    Navigation
==================================*/

.tab-container{

    display:flex;

    gap:8px;

    padding:0 16px 16px;

}


.tab-button{

    flex:1;

    height:46px;

    border-radius:12px;

    background:var(--card);

    color:var(--text-secondary);

    font-weight:600;

    box-shadow:var(--shadow);

    transition:.2s;

}


.tab-button.active{

    background:var(--primary);

    color:#fff;

}


/*==================================
    Main
==================================*/

main{

    padding:0 16px 24px;

}


/*==================================
    Section
==================================*/

.section-container{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-bottom:16px;

    padding:16px;

    background:var(--card);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}


.section-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

}


.section-title{

    font-size:18px;

    font-weight:700;

}


.section-action{

    color:var(--primary);

    font-size:14px;

    font-weight:600;

}


.section-content{

    display:flex;

    flex-direction:column;

    gap:16px;

}


/*==================================
    Buttons
==================================*/

.button{

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:46px;

    border-radius:12px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

}


.button-outline{

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:46px;

    border:1px solid var(--border);

    border-radius:12px;

    background:#fff;

    color:var(--text);

}


/*==================================
    Form
==================================*/

.input{

    width:100%;

    padding:12px 16px;

    border:1px solid var(--border);

    border-radius:12px;

    background:#fff;

}


.select{

    width:100%;

    padding:12px 16px;

    border:1px solid var(--border);

    border-radius:12px;

    background:#fff;

}


/*==================================
    Utilities
==================================*/

.text-center{

    text-align:center;

}


.text-right{

    text-align:right;

}


.mt-16{

    margin-top:16px;

}


.mb-16{

    margin-bottom:16px;

}


.flex{

    display:flex;

}


.flex-column{

    flex-direction:column;

}


.flex-between{

    justify-content:space-between;

}


.align-center{

    align-items:center;

}


.gap-8{

    gap:8px;

}


.gap-16{

    gap:16px;

}
body{

    padding-bottom:70px;

}


