/* Premium Address Selection UI */
.address-list-container {
    padding: 10px 0;
}

.address-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    color: inherit !important;
    position: relative;
    overflow: hidden;
}

.address-item:hover {
    border-color: var(--theme-default, #7366ff);
    box-shadow: 0 4px 15px rgba(115, 102, 255, 0.08);
    background: #fbfbff;
    transform: translateY(-2px);
}

.address-item:active {
    transform: translateY(0);
}

.address-icon-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #f3f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.address-item:hover .address-icon-wrapper {
    background: var(--theme-default, #7366ff);
    color: #ffffff;
}

.address-icon-wrapper i {
    font-size: 18px;
}

.address-content {
    flex-grow: 1;
}

.address-user-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 3px;
}

.address-text {
    display: block;
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

.address-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
    color: var(--theme-default, #7366ff);
    opacity: 0;
    transition: 0.3s;
}

.address-item:hover .address-badge {
    opacity: 1;
}

/* Modal Scrollbar refinement */
.modal-body::-webkit-scrollbar {
    width: 6px;
}
.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.modal-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}
