:root{
    --van-nav-bar-background: transparent;
    --van-cell-background: transparent;
    --van-nav-bar-arrow-size: 24px;
}

body{
    padding: 0;
    margin: 0;
}

#app{
    flex: 1;
    width: auto;
    height: auto;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.container{
    flex: 1;
    width: auto;
    height: auto;
    padding: 0 var(--van-cell-horizontal-padding);
}

.ct-card{
    flex: 1;
    width: auto;
    height: auto;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
}

.ct-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.flex-row-between{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.ct-footer{
    margin: 50px auto auto auto;
    text-align: center;
    padding-bottom: 80px;
}