@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');

body{
    font-family: "Poppins", serif;
}

.dashboard__table{
    overflow-x: auto;
    border-radius: 12px;
    height: fit-content;
    background-color: #fff;
}

.dashboard__table table{
    width: 100%;
    white-space: nowrap;
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
}

.dashboard__table table thead tr th{
    font-size: 16px;
    font-weight: 500;
    color: #1f2641;
    padding: 12px 16px;
}

.dashboard__table table tbody tr td{
    font-size: 14px;
    font-weight: 400;
    color: #807676;
    padding: 16px 16px;
}

.addUser__btn{
    background-color: #5e37ff;
    border-radius: 8px;
    padding: 6px 16px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.addUser__btn{
    background-color: #5e37ff;
    border-radius: 8px;
    padding: 6px 16px;
    color: white;
    font-size: 14px;
    font-weight: 600
}   

.popupContainer {
opacity: 0;
visibility: hidden; 
background-color: rgba(0, 0, 0, 0.7);
width: 100%;
height: 100vh;
position: fixed;
inset: 0;
justify-content: center;
align-items: center;
transition: all 0.5s ease;
}

.popupContainer.active {
    opacity: 1;
    visibility: visible; 
}

.from__container{
    width: 424px;
    height: 100%;
    background-color: #fff;
}

.form__input input{
    width: 100%;
    height: 52px;
    outline: none;
    background-color:rgb(240, 237, 237);
    border-radius: 8px;
    padding: 0px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px; 
}

.form__input input::placeholder{
    font-size: 14px;
}

.form__btn button{
    width: 100%;
    height: 52px;
    background-color: #5e37ff;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.addTitle{
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.input__labelName{
    font-size: 15px;
    font-weight: 500;
    color: #000;
}




