.container{
    height: 100vh;
}
.container-account{
    padding:10px  20px 20px 20px !important;
    background-color: #010851;

}
.left-container{
    width: 70%;
    display: flex;
    align-items: start;
}
header .icon-left{
    width: 70%;
    object-fit: cover;
}
.header-left{
    padding-top: 10px;
}
.level-container .text-profile{
    font-size: 20px;
    margin-left: 20px;
    font-weight: bold;
    margin-top: 5px ;
}
.login-container{
    padding: 30px 0;
}
.login-container .form-login{
    display: flex;
    flex-direction: column;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;

}
.form-login input{
    padding: 20px 20px;
    border-radius: 10px;
    background-color: #1B3584;
    border: 1px solid #4655F5;
    color: #fff;
}

.form-login input::placeholder{
    color: #8FA8F5;
}

.form-login .btn-login{

    padding: 13px 20px;
    border: 1px solid #0FFF00;
    border-radius: 10px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    background: linear-gradient(to right, #0BA104, #18D00F);
    box-shadow: 0 4px 0  #18D00F;

}
.form-login .btn-login:hover{
    cursor: pointer;
}
input:focus{
    outline: none;           /* Bỏ viền mặc định của trình duyệt */
    border: 1px solid #4655F5;  /* Màu xanh khi focus */
    box-shadow: 0 0 5px #2F62AE66; /* Viền phát sáng nhẹ nếu muốn */
}

.list-vip .item-vip{
    margin: 10px 10px;
    background-color: #141D76;
    border-radius: 10px;
    border: 1px solid #3E4D9A;
    padding: 5px 10px ;
}
.progress-bar {
    width: 50%;
    height: 12px;
    background-color: #0a1a55; /* nền đen xanh đậm */
    border-radius: 20px;
    overflow: hidden;
    padding: 2px;
}
.list-vip .header-item_vip{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.list-vip .header-item_vip img{
    width: 10%;
    object-fit: contain;
}
.list-vip .header-item_vip .text-header_vip{
    padding: 0 !important;
    font-weight: bold;
    margin-top:10px !important;
}
.list-vip .header-item_vip .vip-o{
    margin-top: 5px !important;
}
.item-vip .content-item_vip .text-desc{
    color: #FFEA00;
    width: 100%;
    text-align: start;
    font-size: 12px;
}
.list-vip .inf-item_vip{
    padding: 10px !important;
}
.content-item_vip .text-interest{
    white-space: nowrap;
}
.content-item_vip .conainer-text_desc{
    display: flex;
    flex-direction: column;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #0BA104, #18D00F);
    border-radius: 20px;
    transition: width 0.3s ease-in-out;
}
.item-vip .title-item{
    text-align: center;
    margin: 0 !important;
    padding: 5px 0 0 0 !important;
}

.list-vip .item-vip .content-item_progress{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0;
}
.list-vip .item-vip .content-item_vip{
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 6px 12px;
    align-items: center;
    padding: 10px 0px;
}
.item-vip .content-item_vip span{
    font-weight: bold;
}
.list-vip .item-vip .progress-text{
    text-align: center;
    padding: 5px 0;
}
.modal-body {
    overflow-y: auto;
    max-height: 80vh;
    padding: 10px;

    /* Scroll đẹp */
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent; /* Firefox */
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(#0BA104, #18D00F);
    border-radius: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}


/* Nội dung popup */
.modal-content {
    background-color: #010851;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #4655F5;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    display: flex;
    max-height: 95vh;
    flex-direction: column;
}

/* Header popup */
.modal-header {
    position: relative;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    background-color: #112EA8;
    padding: 15px 0;
    border-radius: 10px 10px 0 0;

}
.modal-header h5{
    text-align: center;
    margin: 0 !important;
    font-size: 18px;
}

/* Nút đóng */
.close-btn {
    font-size: 32px;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 10%;

}
.close-btn:hover {
    color: #000;
}
.modal-body{
    background-color: #010851;
    margin: 0 !important;
    border-radius: 0 0 10px 10px;
    overflow-y: auto;
}
.modal-body p{
    margin: 0 !important;
    padding: 20px;
    text-align: justify;
}
.modal-body span{
    display: block;
    text-align: left;
    padding: 20px 0 10px 10px;
}
.footer{
    display: flex;
    justify-content: end;
}
.btn-close{
    border: none;
    background-color: #010851;
    color: #16C80D;
    margin-right: 20px;
    padding: 15px;
    font-size: 15px;
}
.btn-close:hover{
    cursor: pointer;
}

@media screen and (max-width: 767px){
    .level-container .text-profile{
        margin-top: -2px !important;
    }
    .login-container .form-login{
        width: 100%;
    }
    .footer{
        width: 100%;
    }
    header .icon-left{
        width: 50%!important;
    }
}
@media screen and (max-width: 500px){
    .login-container .form-login{
        width: 100%;
    }
    .footer{
        width: 100%;
    }
    .modal-body span{
        display: block;
        text-align: left;
        padding: 10px 0 10px 30px;
    }
}
@media screen and (max-width: 500px) and (min-width: 400px){
    .modal-body span {
        display: block;
        text-align: left;
        padding: 10px 0 10px 35px;

    }
    .btn-close{
        margin-right: 35px;
    }
}
