body {
    font-family: Arial, sans-serif;
    background-color: #FCFDFE;
    margin: 0;
    padding: 0 0 200px;
}

.user_container {
    padding: 10px;
}

.user_header img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    cursor: pointer;
}

.user_header h1 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.user_card {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px 20px;
}

.user_card .user_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    height: 2.6rem;
}

.user_card .user_item:last-child {
    border-bottom: none;
}

.user_card .user_item label {
    font-size: 1rem;
    color: #354356;
}
.user_subscription{
    font-size: 1rem;
    color: #354356;
}

.user_card .user_item input {
    border: none;
    font-size: 16px;
    color: #333;
    width: 60%;
    text-align: right;
    background-color: transparent;
}

.user_card .user_subscription {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    height: 2.6rem;
}


.green_span{
    font-size: 16px;
    color: #4caf50;
    font-weight: bold;
    border: 1px solid #4caf50;
    padding: 2px 5px;
    border-radius: 50px;
    cursor: pointer;
}
.grey_span{
    font-size: 16px;
    color: #cccccc;
    border: 1px solid #cccccc;
    padding: 2px 5px;
    border-radius: 50px;
    cursor: pointer;
}
.radius10{
    border-radius: 10px;
}
.left_10{
    padding-left: 10px;
}
.padding10{
    padding: 10px;!important;
}
.user_danger-zone {
    background-color: #fff;
}

.user_danger-zone .user_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    width: 98%;
    padding: 10px;
}

.user_danger-zone .user_item label {
    font-size: 1rem;
    color: #354356;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user_danger-zone .user_item label img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.user_danger-zone .user_item span {
    font-size: 16px;
    color: #c3cdc7;
}

.user_danger-zone .user_set {
    font-size: 14px;
    color: #5f707d;
    margin-top: 10px;
}

.des_header {
    padding: 10px;
    position: relative;
    text-align: center;
    line-height: 30px;
    height: 30px;
}

.des_header .title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 96%; /* Adjust as needed */
}

.des_header .back-button {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 0;
}

.des_header .back-button::before {
    content: '';
    display: block;
    background-image: url('../icon/back.png');
    background-size: cover;
    width: 100%;
    height: 100%;
}

.des_header .title {
    margin: 0;
    font-size: 1rem;
    padding: 0 10px;
    white-space: nowrap;
    font-weight: bold;
}

.subscription-modal {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.subscription-tiers {
    list-style-type: none;
    padding: 0;
}

.tier {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.tier h3 {
    margin: 0;
}

.tier p {
    margin: 5px 0;
}

.subscribe-button {
    background-color: #4caf50;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.save_container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.save_button {
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    margin-right: 20px;
    text-decoration: none;
}
.tex_container {
    position: relative;
    width: 100%;
}

.tex_textarea {
    width: 100%;
    height: 4rem;
    padding: 10px;
    box-sizing: border-box;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none; /* Prevent resizing */
}

.tex_button-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.tex_button {
    padding: 8px 12px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #354356;
    color: white;
    transition: background-color 0.3s;
}

.tex_button:hover {
    background-color: #354356;
}

.tex_button:active {
    background-color: #004085;
}

.hidden {
    display: none;
}
#sys_view{
    display: none;
}
.reg_container {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}
.reg_danger-zone {
    padding: 10px;
}
.reg_user_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-top: 20px;
    width: 90%;
    padding-bottom: 10px;
}
.reg_tex_container {
    margin-top: 15px;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 10px;
}
.reg_tex_textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.reg_tex_button-container {
    margin-top: 5px;
    justify-content: space-between;
}
.reg_tex_button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #354356;
    color: white;
    cursor: pointer;
}
.reg_label {
    display: block;
    margin-bottom: 5px;
}
.reg_input {
    width: calc(100% - 120px);
    padding: 10px;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.reg_verify_button {
    width: 100px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #354356;
    color: white;
    cursor: pointer;
}

#new_phone{
    margin-top: 10px;
}
#new_email{
    margin-top: 10px;
}
#new_password{
    margin-top: 10px;
    margin-bottom: 10px;
}
#confirm_password{
    margin-top: 10px;
    margin-bottom: 10px;
}

.edit-toggle{
    color: #333333;
}

.vc_code_input{
}
.reg_verify_button.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.disabled-button {
    background-color: #ccc;
    color: #5f707d;
}

#ucode{
    font-size: 1rem;
    font-weight: bold;
    margin-right: 10px;
}
#ucode_span{
    border-radius: 5px;
    padding: 3px;
    font-size: 1rem;
    border: 1px solid #5f707d;
    color: #5f707d;
}

.hide_set{
    display: none;
    width: 100%;
    height: auto;
}
.sys_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1rem;
    height: 2rem;
    line-height: 2rem;
    padding: 10px;
    background-color: #ffffff;
}
.sys_title {
    color: #333;
    padding-left: 15px;
    font-size: 1rem;
    width: 100px;
}

.sys_options {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f1f1f1;
    margin-right: 25px;
}
.sys_option {
    padding: 2px 8px;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
    transition: background-color 0.3s;
}
.sys_option.sys_active {
    background-color: #d9d9d9;
    font-weight: bold;
}
.sys_option:not(.sys_active):hover {
    background-color: #eaeaea;
}
.sys_val{
    width: 80%;
    text-align: right;
    margin-right: 25px;
    color: #999;
}