*{
    margin: 0px;
    padding: 0px;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}

.popup-container{
    height: 95vh;
    width: 100vw;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-parent{
    display: none;
}

.popup-box{
    height: 20vh;
    width: 25vw;
    border: 1px solid black;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup-box p{
    font-size: 24px;
    margin: 10px;
    font-weight: 600;
}
.popup-btns{
    display: flex;
    justify-content: space-evenly;
    width: 90%;
}
.btn-cancel{
    background-color: red;
    height: 30px;
    width: 100px;
    border: none;
    font-weight: 600;
}
.btn-logout{
    background-color: green;
    height: 30px;
    width: 100px;
    border: none;
    font-weight: 600;
}

/* profile */

.details-parent{
    height: 90vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.detail-container{
    height: 70vh;
    width: 25%;
    border: 1px solid black;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5%;
}
.detail-container h1 { 
    font-weight: 700;
}

/* add products css  */

.form{
    height: 90vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#addProductForm{
    display: flex;
    flex-direction: column;
    height: 40vh;
    gap: 5%;
}
#addProductForm input{
    width: 200px;
}