.change_avatar_edit {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 5px;
    cursor: pointer;
    color:#6610f2;
    border-radius: 10px 0;
}
.settings-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* background-image: url('/images/giftcode/giftcode.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; */
}
.settings-container {
    height: 100vh;
    overflow-x: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE và Edge */
    /* color: #fff; */
}
.settings-container::-webkit-scrollbar {
    display: none;
}

.settings-button {
    flex-shrink: 0;
    height: 150px;
}
.custom-divider {
    padding: 10px 0;
}
.input-group-text {
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #ced4da;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-right: none;
    margin-right: -2px;
}
.change_password_form {
    padding: 20px;;
}
.profile-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-image: url('/images/giftcode/giftcode.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    color: #fff;*/
}

.profile-container {
    overflow-x: hidden;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.profile-info a {
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05); /* Giảm độ mờ để trong suốt hơn, giống gương */
    box-shadow: 
      0 4px 15px rgba(0, 0, 0, 0.2), /* Bóng nhẹ để tạo chiều sâu */
      inset 0 0 10px rgba(255, 255, 255, 0.5); /* Hiệu ứng sáng bóng bên trong */
    backdrop-filter: blur(3px); /* Tăng độ mờ để giống gương hơn */
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.6); /* Viền sáng hơn, tạo cảm giác phản chiếu */
    outline: 1px solid rgba(255, 255, 255, 0.8); /* Thêm outline sáng để tăng hiệu ứng gương */
    /* color: #fff; */
    width: 80px;
    height: 80px;
}
.profile-info i {
    font-size: 20px;
}
.profile-info span {
    font-size: 12px;
}
.profile-journey {
    flex: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Bắt đầu từ góc trái */
    align-items: flex-start; /* Bắt đầu từ góc trên */
    overflow-x: hidden;
    padding: 0px 10px 100px 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE và Edge */
}
.profile-journey::-webkit-scrollbar {
    display: none;
}

.profile-journey-item {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    padding: 5px;
}
/* .profile-journey-item img {
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    outline: 1px solid rgba(255, 255, 255, 0.8);
} */
.profile-journey-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.profile-popup {
    display: none;
    position: absolute;
    bottom: 30px;
    right: 5px;
    background-color: #fff;
    color: #000;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.position-absolute {
    bottom: 5px;
    right: 5px;
    cursor: pointer;
    background: var(--swal2-backdrop);
    padding: 5px;
    border-radius: 0px 0px 5px;
}

@media (min-width: 768px) {
  .settings-button {
        height: 50px;
        display: flex;
        align-items: center;
        z-index: 2;
        gap: 10px;
    }
}