.profile {
    max-width: 1200px;
    display: flex;
    margin-bottom: 50px;
}
.svg-contai.back{
    border: solid 1px #db8ade;
    width: 50px;
    height: 40px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
}
.svg-contai.back svg{
    width: 30px;
}
.svg-contai.back:hover .size-6 {
    stroke: white; 
  }
  
  .svg-contai.back:hover {
    background-color: #db8ade; 
  }
.profile .img-box{
    width: 50%;
}
.profile .img-box .img-b{
    height: 450px;
    padding: 10px;
}
.profile .img-box .img-s{
    padding: 10px;
}
.profile .img-box .img-s img{
    width: 80px;
    cursor: pointer;
    
}
.profile .img-box .img-b img{
    width: 100%;
  height: 100%;
  object-fit: contain; 
}
.profile .img-box .video{
    width: 100%;
  height: 300px;
}

.profile .info{
    width: 50%;
    padding: 10px;
}
.profile .info .request-box{
    margin-top: 60px;
    display: flex;
    justify-content: center;
}
.profile .info .request{
    font-size: 13px;
    color: #fff;
    background: rgb(219, 138, 222);
    background: linear-gradient(-145deg, rgba(219, 138, 222, 1) 0%, rgba(246, 191, 159, 1) 100%);
    padding: 12px 30px;
    display: inline-block;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
    cursor: pointer;
}
.profile .info th{
    font-size: 20px;
    width: fit-content;
    white-space: nowrap;
}
.profile .info td{
    font-size: 30px;
    padding-left: 30px;
}
.profile .info .rank{
    color: #fff;
}


.profile .info td span{
    display: inline-block;
    font-size: 14px;
    border: solid 1px gray;
    padding:3px 10px;
    border-radius: 10px;
}
.profile .name{
    font-size: 30px;
    font-weight: bold;
    color: rgb(77, 77, 77);
}

.ques table{
    border: solid 1px rgb(219, 138, 222);
    width: 100%;
    max-width: 900px;
}
.ques th{
    background-color: rgb(219, 138, 222);
    padding:5px 10px;
    color: #fff;
}
.ques td{
    border: 1px solid rgb(219, 138, 222); /* Viền của từng ô */
    padding: 10px;
}
.ques .ask::before{
    content: "Q";
    color: #3490F0;
    margin: 10px;
    font-weight: bold;
}
.ques .ask{
    width:40%;
}
.ques .ans::before{
    content: "A";
    color: #F4347C;
    margin: 10px;
    font-weight: bold;
}
.ques .ans{
    flex: 1;
}
.comment {
    margin-top: 20px;
}
.comment .title{
    background-color: rgb(219, 138, 222);
    padding:5px 10px;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.comment p{
    padding: 20px;
    border: solid 1px rgb(219, 138, 222);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.gts{
    width: 100%;
}
.gts a{
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    width: 100px;
    align-items: center;
    color: black;
}
.gts a h4 em{
   color:#db8ade
    
}
.notify-box {

    width: fit-content;
    height: fit-content;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    margin: auto;
    background-color: #fff;
}
.notify-box .notify{
    font-size: 20px;
    color: gray;
    font-weight: bold;
    margin-bottom: 40px;
    margin:20px 50px 50px 50px;
}
.notify-box .btn-box{
    display: flex;
    justify-content: space-evenly;
}
.notify-box a{
    font-size: 13px;
    color: #fff;
    background: rgb(219, 138, 222);
    background: linear-gradient(-145deg, rgba(219, 138, 222, 1) 0%, rgba(246, 191, 159, 1) 100%);
    padding: 8px 16px;
    display: inline-block;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
    cursor: pointer;
    margin: 20px;
}
@media screen and (max-width: 900px) {
    .profile {
        flex-direction: column;
    }
    .profile .img-box {
        width: 100%;
    }
    .profile .info {
        width: 100%;
    }
    .profile .info th{
        font-size: 15px;
        width: fit-content;
        /* white-space: normal; */
    }
    .profile .info td{
        font-size: 20px;
        padding-left: 10px;
        white-space: normal;
    }
    .profile .info td span {
        font-size: 12px;
        border: solid 1px gray;
        padding: 3px 4px;
        border-radius: 10px;
    }
    
  }