.header {
    background: white;
    display: flex;
    flex-direction: column;

    .user {
        margin-bottom: 20px;

        .username {
            font-size: 16px;
            font-weight: bold;
        }
    }

    .status {
        display: flex;
        justify-content: space-between;

        .status-top {
            font-size: 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            & > span:first-child {
                margin-bottom: 5px;
                color: #cccccc;
            }
        }
    }
}