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

body {
    background-color: #101418;
    color: #fff;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
    gap: 2%;
}

/* nav a {
    width: 100%;
    color: #B0B8C4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    gap: 8px;
    border-bottom: 2px solid #272B2F;
    padding-bottom: 6px;
    font-size: 18px;
    font-weight: 500;
} */

nav a {
    color: #B0B8C4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 40px;
    width: 100%;
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #161f27;
}

nav a i {
    font-size: 16px;
}
nav a.active {
    color: #66B2FF !important;
    /* border-color: #66B2FF; */
    background-color: #2d4865;
    /* width: 150%; */
    font-size: 14px;
}

nav a .nav-text {
    display: none;
}

nav a.active .nav-text {
    display: block;
}

main {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    flex-direction: column;
    padding: 20px 10px;
    gap: 12px;
}

.main-item {
    width: 100%;
    border-radius: 6px;
}

.main-item.time {
    color: #B0B8C4;
    text-align: center;
    font-size: 16px;
}

.main-item.banner {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    text-align: center;
    padding: 6px 20px;
    background-color: #303A46;
    font-size: 12px;
}

.main-item.habit {
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #1B2127;
    padding: 10px 20px;
    gap: 12px;
}

.main-item.habit > div {
    width: 100%;
}

.main-item.habit .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    width: 24px;
    min-height: 24px;
    height: 24px;
    border-radius: 6px;
    outline: 2px #6B7077 solid;
    outline-offset: -2px;
    font-size: 14px;
}

.main-item.habit .checkbox i {
    display: none;
}

.main-item.habit[data-check="true"] {
    opacity: 0.5;
}

.main-item.habit[data-check="true"] .checkbox {
    background-color: #3381ce;
    outline: none;
    background-color: #292E3F;
}

.main-item.habit[data-check="true"] .checkbox i {
    display: block;
}

.main-item.habit .text span {
    color: #66B2FF;
}


.main-item.habit.color-2 .text span,
.color-2 span {
    color: #FF9900;
}

.main-item.habit .help {
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-item.habit .help i {
    color: #6B7077;
}