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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:var(--background);
    color:var(--text);
    overflow-x:hidden;

}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

.app{

    display:flex;
    min-height:calc(100vh - 70px);

}

.main-content{

    flex:1;
    transition:margin-left .35s ease;

}

.page-content{

    padding:25px;

}

.welcome-card{

    background:var(--card);

    border-radius:16px;

    padding:40px;

    box-shadow:var(--shadow);

}

.welcome-card h1{

    font-size:36px;

    margin-bottom:10px;

}

.welcome-card p{

    color:#6b7280;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

}

input{

    outline:none;

}

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#cbd5e1;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#94a3b8;

}