@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Teko:wght@300..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Poppins", serif;
}

.logo__title{
    font-size: 32px;
    font-weight: 700;
    color: #1f2641;
}

.logo__bottom{
    border-bottom: 1px solid #c9c9c9;
}

.sidebar__container{
    width: 240px;
    height: 100%;
    background-color: #ffffff;
    position: fixed;
    inset: 0;
}

.side__barIcons{
    color: #B4BBD1;
    font-size: 16px;
}

.side__barName{
    font-size: 17px;
    color: #B4BBD1;
    font-weight: 600;
}

.side__barLinks:hover .side__barName,
.side__barLinks:hover .side__barIcons {
    color: #5e37ff; 
}

.side__barLinks.active .side__barName,
.side__barLinks.active .side__barIcons {
    color: #5e37ff; 
}


/* Main content */

.main__container{
    width: calc(100% - 240px);
    margin-left: 240px;
}

.header__container{
    background-color: #fff;
    position: sticky;
    top: 0;
}

.view__container{
    background-color: #F6F8FE;
    padding: 32px 40px;
    height: 100%;
    border-radius: 50px;
}

.dashBoard__heading{
    font-size: 28px;
    font-weight: 600;
    color: #1f2641;
}

.dash__name{
    font-size: 16px;
    color: #B4BBD1;
    font-weight: 500;
}

.dash__welcome{
    font-size: 22px;
    font-weight: 600;
    color: #1f2641;
}

.fa-bell{
    color: #5e37ff;
    font-size: 22px;
}

.header__userIcon{
    font-size: 20px;
    color: #B4BBD1;
}

.fa-circle{
    font-size: 10px;
    color: #ff0000;
}

.noti__icon{
    position: absolute;
    top: -12px;
    right: -2px;
}

.dashboard__detailBox{
    border-radius: 20px;
    background-color: #fff;
    width: 280px;
}

.fa-wallet{
    color: #5e37ff;
    font-size: 22px;
}

.dashboard__detailBoxTitle{
    font-size: 18px;
    color: #1f2641;
    font-weight: 600;
}

.dashboard__detailBoxRupees{
    font-size: 16px;
    font-weight: 600;
    color: #1f2641;
}

.fa-right-from-bracket{
    color: #ff0000;
}

.side__barLog{
    font-size: 16px;
    color: #ff0000;
    font-weight: 500;
}

@media only screen and (max-width: 1024px) {
    .main__container{
        width: 100%;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 640px) {
    .dashboard__detailBox{
        width: 100%;
    }
    .dash__welcome{
        font-size: 16px;
    }
    .dash__name{
        font-size: 14px;
    }
    .view__container{
        padding: 40px 20px;
    }
}