main section{
    padding-top: 20px;
}
table{
    width: 100%;
}

table thead{
    border-bottom: 4px solid #fea53d;
}
td{
    font-size: 18px;
}
th{
    font-size: 20px;
}

th, td{
    height: 80px;
}

main h1{
    text-align: center;
    font-size: 30px;
}

tbody tr{
    border: 1px solid #fea53d;
}

table button{
    background-color: transparent;
    border: 1px solid #fea53d;
    border-radius: 10px;
    padding: 10px 15px;
    color: #fff;
    transition: 0.3s;
    font-size: 16px;
}

table button:hover{
    background-color: #fea53d;
}

.mb-3{
    margin-bottom: 1rem;
}
.wrapper{
    padding-top: 60px;
}

.pro-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.pro-box .left{
    display: flex;
    width: 90%;
}


.pro-box .right{
    width: 10%;
    display: flex;
    align-items: center;
}

.pro-box .right input{
    width: 28px;
}

.picture{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.picture img{
    object-fit: cover;
}

.popup p{
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.popup .overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 1;
    display: none;
}

.popup .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 450px;
    min-height: 250px;
    color: #222;
    padding: 0 15px;
}

.popup .btn-close{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #fea53d;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.popup.active .overlay{
    display: block;
}

.popup.active .content{
    transition: all 0.3s ease-in-out;
    transform: translate(-50%, -50%) scale(1);
}