.address-box-widget {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.address-box-widget:hover {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.address-box-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
}

.address-box-content {
    color: #666;
    line-height: 1.6;
}

/* Animation for reordering */
.address-box-widget.moving {
    transform: scale(0.98);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .address-box-widget {
        margin-bottom: 15px;
    }
    
    .address-box-title {
        font-size: 16px;
    }
}

/* Custom container styles */
.address-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Transition for smooth reordering */
.address-container .address-box-widget {
    transition: transform 0.3s ease-in-out;
}